ClassesByName2Test.java revision 493
0N/A/*
0N/A * Copyright 2001-2003 Sun Microsystems, Inc. All Rights Reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
0N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
0N/A * CA 95054 USA or visit www.sun.com if you need additional information or
0N/A * have any questions.
0N/A */
0N/A
0N/A/**
0N/A * @test
0N/A * @bug 4406439 4925740
0N/A * @summary ClassesByName2 verifies that all the classes in the loaded class list can be found with classesByName..
0N/A *
0N/A * @author Tim Bell (based on ClassesByName by Robert Field)
0N/A *
0N/A * @run build TestScaffold VMConnection TargetListener TargetAdapter
0N/A * @run compile -g ClassesByName2Test.java
0N/A * @run main ClassesByName2Test
0N/A */
0N/Aimport com.sun.jdi.*;
0N/Aimport com.sun.jdi.event.*;
0N/Aimport com.sun.jdi.request.*;
0N/A
0N/Aimport java.util.*;
0N/A
0N/A /********** target program **********/
0N/A
0N/Aclass ClassesByName2Targ {
0N/A public static void ready() {
0N/A System.out.println("Ready!");
0N/A }
0N/A
0N/A public static void main(String[] args){
0N/A System.out.println("Howdy!");
0N/A try {
0N/A
0N/A Thread zero = new Thread ("ZERO") {
0N/A public void run () {
0N/A System.setProperty("java.awt.headless", "true");
0N/A java.awt.Toolkit tk = java.awt.Toolkit.getDefaultToolkit();
0N/A
0N/A }
0N/A };
0N/A
0N/A Thread one = new Thread ("ONE") {
0N/A public void run () {
0N/A try {
0N/A java.security.KeyPairGenerator keyGen =
0N/A java.security.KeyPairGenerator.getInstance("DSA", "SUN");
0N/A } catch (Exception e) {
0N/A e.printStackTrace();
0N/A }
0N/A }
0N/A };
0N/A
0N/A Thread two = new Thread ("TWO") {
0N/A public void run () {
0N/A javax.rmi.CORBA.Util.getCodebase(this.getClass());
0N/A }
0N/A };
0N/A
0N/A ready();
0N/A
0N/A two.start();
0N/A one.start();
0N/A zero.start();
0N/A
0N/A try {
0N/A zero.join();
0N/A one.join();
0N/A two.join();
0N/A } catch (InterruptedException iex) {
0N/A iex.printStackTrace();
0N/A }
0N/A } catch (Exception e) {
0N/A e.printStackTrace();
0N/A }
0N/A System.out.println("Goodbye from ClassesByName2Targ!");
0N/A }
0N/A}
0N/A
0N/A /********** test program **********/
0N/A
0N/Apublic class ClassesByName2Test extends TestScaffold {
0N/A
0N/A ClassesByName2Test (String args[]) {
0N/A super(args);
0N/A }
0N/A
0N/A public static void main(String[] args) throws Exception {
0N/A new ClassesByName2Test(args).startTests();
0N/A }
0N/A
0N/A protected void runTests() throws Exception {
0N/A /*
0N/A * Get to the top of ready()
0N/A */
0N/A startTo("ClassesByName2Targ", "ready", "()V");
0N/A
0N/A vm().resume();
0N/A
0N/A int i = 0;
0N/A while (i < 8 && !vmDisconnected) {
0N/A i++;
0N/A List all = vm().allClasses();
0N/A System.out.println("");
0N/A System.out.println("++++ Lookup number: " + i + ". allClasses() returned " +
0N/A all.size() + " classes.");
0N/A for (Iterator it = all.iterator(); it.hasNext(); ) {
0N/A ReferenceType cls = (ReferenceType)it.next();
0N/A String name = cls.name();
0N/A List found = vm().classesByName(name);
0N/A if (found.contains(cls)) {
0N/A //System.out.println("Found class: " + name);
0N/A } else {
0N/A System.out.println("CLASS NOT FOUND: " + name);
0N/A throw new Exception("CLASS NOT FOUND (by classesByName): " +
0N/A name);
0N/A }
0N/A }
0N/A }
493N/A
493N/A
493N/A // Doing vm().exit(0) instead of listenUntilVMDisconnect()
493N/A // speeds up the test up by more than 50% in -server -Xcomp (solsparc32-fastdebug)
493N/A vm().exit(0);
0N/A
0N/A /*
0N/A * deal with results of test
0N/A * if anything has called failure("foo") testFailed will be true
0N/A */
0N/A if (!testFailed) {
0N/A println("ClassesByName2Test: passed");
0N/A } else {
0N/A throw new Exception("ClassesByName2Test: failed");
0N/A }
0N/A }
0N/A}