blob: 254d7da40c6b7555471fca5666fc588f6e05e70e [file] [log] [blame]
/*
* Copyright (c) 2007, 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/ReferenceType/instances/instances005.
* VM Testbase keywords: [quick, jpda, jdi, feature_jdk6_jpda, vm6]
* VM Testbase readme:
* DESCRIPTION
* Test checks behavior of ReferenceType.instances() in case when there are many
* instances (several thousands) of corresponding ReferenceType in debuggee VM.
* Debugger forces debuggee VM create 100000 (this value can be changed through parameter -instanceCount) instances
* of 'nsk.share.jdi.TestClass1', obtains ReferenceType for 'nsk.share.jdi.TestClass1' and checks that ReferenceType.instances()
* returns collection with correct size and returned instances doesn't throw any exception when call following methods:
* referenceType()
* isCollected()
* uniqueID()
* hashCode()
*
* @library /vmTestbase
* /test/lib
* @run driver jdk.test.lib.FileInstaller . .
* @build nsk.jdi.ReferenceType.instances.instances005.instances005
* @run main/othervm/native PropertyResolvingWrapper
* nsk.jdi.ReferenceType.instances.instances005.instances005
* -verbose
* -arch=${os.family}-${os.simpleArch}
* -waittime=5
* -debugee.vmkind=java
* -transport.address=dynamic
* "-debugee.vmkeys=${test.vm.opts} ${test.java.opts}"
*/
package nsk.jdi.ReferenceType.instances.instances005;
import java.io.PrintStream;
import java.util.*;
import com.sun.jdi.*;
import nsk.share.Consts;
import nsk.share.ObjectInstancesManager;
import nsk.share.jdi.HeapwalkingDebuggee;
import nsk.share.jdi.HeapwalkingDebugger;
import nsk.share.jdi.TestClass1;
public class instances005 extends HeapwalkingDebugger {
public static void main(String argv[]) {
System.exit(run(argv, System.out) + Consts.JCK_STATUS_BASE);
}
private int instanceCount = 100000;
protected String[] doInit(String args[], PrintStream out) {
args = super.doInit(args, out);
ArrayList<String> standardArgs = new ArrayList<String>();
for (int i = 0; i < args.length; i++) {
if (args[i].equals("-instanceCount") && (i < args.length - 1)) {
instanceCount = Integer.parseInt(args[i + 1]);
i++;
} else
standardArgs.add(args[i]);
}
return standardArgs.toArray(new String[] {});
}
public static int run(String argv[], PrintStream out) {
return new instances005().runIt(argv, out);
}
protected String debuggeeClassName() {
return HeapwalkingDebuggee.class.getName();
}
protected void doTest() {
String className = TestClass1.class.getName();
pipe.println(HeapwalkingDebuggee.COMMAND_CREATE_INSTANCES + ":" + className + ":" + instanceCount + ":" + 1
+ ":" + ObjectInstancesManager.STRONG_REFERENCE);
checkDebugeeAnswer_instanceCounts(className, instanceCount);
checkDebugeeAnswer_instances(className, instanceCount);
ReferenceType referenceType = debuggee.classByName(className);
List<ObjectReference> instances = referenceType.instances(0);
vm.suspend();
for (ObjectReference instance : instances) {
try {
if (!referenceType.equals(instance.referenceType())) {
setSuccess(false);
log.complain("Instance's ReferenceType " + instance.referenceType() + " doesn't equal "
+ referenceType);
}
if (instance.isCollected()) {
setSuccess(false);
log.complain("isCollected() returns 'true' for " + instance);
}
instance.uniqueID();
instance.hashCode();
} catch (Throwable t) {
setSuccess(false);
t.printStackTrace(log.getOutStream());
log.complain("Unexpected exception: " + t);
}
}
vm.resume();
}
}