blob: b4f57ad04b0bb0959552f78b6d662d96f797ad2a [file] [log] [blame]
/*
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
*
* @summary converted from VM Testbase nsk/jdi/ArrayReference/getValue/getvalue002.
* VM Testbase keywords: [jpda, jdi]
* VM Testbase readme:
* DESCRIPTION
* This test checks the getValue(int) method of ArrayReference interface of
* com.sun.jdi package.
* The method spec:
* public Value getValue(int index)
* Returns an array component value.
* Parameters: index - the index of the component to retrieve
* Returns: the Value at the given index.
* Throws: java.lang.IndexOutOfBoundsException - if the index is beyond the
* end of this array.
* ObjectCollectedException - if this object has been garbage
* collected.
* nsk/jdi/ArrayReference/getValue/getvalue002 checks assertion:
* public Value getValue(int index)
* 1. IndexOutOfBoundsException is thrown, if the index is out of range of
* ArrayReference. Array has components of primitive types only.
* Debuggee defines a number of array fields with components of primitive types
* only. The fields have different lengths.
* Debugger gets each field from debuggee by name, gets field's value and
* casts it to ArrayReference. Then debugger tries to invoke the method
* getValue(int) with index from MIN_INDEX to -1 and from last index to
* MAX_INDEX. For each index IndexOutOfBoundsException is expected.
* COMMENTS
*
* @library /vmTestbase
* /test/lib
* @run driver jdk.test.lib.FileInstaller . .
* @build nsk.jdi.ArrayReference.getValue.getvalue002
* nsk.jdi.ArrayReference.getValue.getvalue002a
* @run main/othervm PropertyResolvingWrapper
* nsk.jdi.ArrayReference.getValue.getvalue002
* -verbose
* -arch=${os.family}-${os.simpleArch}
* -waittime=5
* -debugee.vmkind=java
* -transport.address=dynamic
* "-debugee.vmkeys=${test.vm.opts} ${test.java.opts}"
*/