author | iklam |
Fri, 09 Aug 2019 13:13:36 -0700 | |
changeset 57705 | 7cf02b2c1455 |
parent 57567 | b000362a89a0 |
child 58679 | 9c3209ff7550 |
permissions | -rw-r--r-- |
48138 | 1 |
/* |
57567
b000362a89a0
8202339: [TESTBUG] Consolidate the tests in runtime/SharedArchiveFile and runtime/appcds
coleenp
parents:
51990
diff
changeset
|
2 |
* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved. |
48138 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
/* |
|
26 |
* @test |
|
27 |
* @summary Initiating and defining classloader test. |
|
48469
7312ae4465d6
8193672: [test] Enhance vm.cds property to check for all conditions required to run CDS tests
iklam
parents:
48138
diff
changeset
|
28 |
* @requires vm.cds |
48138 | 29 |
* @library /test/lib |
57705
7cf02b2c1455
8229267: [TESTBUG] Remove unnecessary @modules dependencies in CDS tests
iklam
parents:
57567
diff
changeset
|
30 |
* @modules jdk.jartool/sun.tools.jar |
48138 | 31 |
* @compile test-classes/Hello.java |
32 |
* @compile test-classes/HelloWB.java |
|
33 |
* @compile test-classes/ForNameTest.java |
|
34 |
* @compile test-classes/BootClassPathAppendHelper.java |
|
35 |
* @build sun.hotspot.WhiteBox |
|
48791
6e079ff6c83c
8186635: ClassFileInstaller should be run as a driver
iignatyev
parents:
48469
diff
changeset
|
36 |
* @run driver ClassFileInstaller sun.hotspot.WhiteBox |
51990
6003e034cdd8
8209946: [TESTBUG] CDS tests should use "@run driver"
iklam
parents:
49335
diff
changeset
|
37 |
* @run driver ClassLoaderTest |
48138 | 38 |
*/ |
39 |
||
40 |
import java.io.File; |
|
41 |
import jdk.test.lib.process.OutputAnalyzer; |
|
42 |
||
43 |
public class ClassLoaderTest { |
|
44 |
public static void main(String[] args) throws Exception { |
|
45 |
JarBuilder.build(true, "ClassLoaderTest-WhiteBox", "sun/hotspot/WhiteBox"); |
|
46 |
JarBuilder.getOrCreateHelloJar(); |
|
47 |
JarBuilder.build("ClassLoaderTest-HelloWB", "HelloWB"); |
|
48 |
JarBuilder.build("ClassLoaderTest-ForName", "ForNameTest"); |
|
49 |
ClassLoaderTest test = new ClassLoaderTest(); |
|
50 |
test.testBootLoader(); |
|
51 |
test.testDefiningLoader(); |
|
52 |
} |
|
53 |
||
54 |
public void testBootLoader() throws Exception { |
|
55 |
String appJar = TestCommon.getTestJar("ClassLoaderTest-HelloWB.jar"); |
|
56 |
String appClasses[] = {"HelloWB"}; |
|
57 |
String whiteBoxJar = TestCommon.getTestJar("ClassLoaderTest-WhiteBox.jar"); |
|
58 |
String bootClassPath = "-Xbootclasspath/a:" + appJar + |
|
59 |
File.pathSeparator + whiteBoxJar; |
|
60 |
||
61 |
TestCommon.dump(appJar, appClasses, bootClassPath); |
|
62 |
||
49335
3271310a6af7
8196121: runtime/appcds/ClassLoaderTest.java fails silently
iklam
parents:
48791
diff
changeset
|
63 |
TestCommon.run( |
48138 | 64 |
"-XX:+UnlockDiagnosticVMOptions", "-XX:+WhiteBoxAPI", |
49335
3271310a6af7
8196121: runtime/appcds/ClassLoaderTest.java fails silently
iklam
parents:
48791
diff
changeset
|
65 |
"-cp", appJar, bootClassPath, "HelloWB") |
3271310a6af7
8196121: runtime/appcds/ClassLoaderTest.java fails silently
iklam
parents:
48791
diff
changeset
|
66 |
.assertNormalExit(output -> output.shouldContain("HelloWB.class.getClassLoader() = null")); |
48138 | 67 |
} |
68 |
||
69 |
public void testDefiningLoader() throws Exception { |
|
70 |
// The boot loader should be used to load the class when it's |
|
71 |
// on the bootclasspath, regardless who is the initiating classloader. |
|
72 |
// In this test case, the AppClassLoader is the initiating classloader. |
|
73 |
String helloJar = TestCommon.getTestJar("hello.jar"); |
|
74 |
String appJar = helloJar + System.getProperty("path.separator") + |
|
75 |
TestCommon.getTestJar("ClassLoaderTest-ForName.jar"); |
|
76 |
String whiteBoxJar = TestCommon.getTestJar("ClassLoaderTest-WhiteBox.jar"); |
|
77 |
String bootClassPath = "-Xbootclasspath/a:" + helloJar + |
|
78 |
File.pathSeparator + whiteBoxJar; |
|
79 |
||
49335
3271310a6af7
8196121: runtime/appcds/ClassLoaderTest.java fails silently
iklam
parents:
48791
diff
changeset
|
80 |
// Archive the "Hello" class from the appended bootclasspath |
48138 | 81 |
TestCommon.dump(helloJar, TestCommon.list("Hello"), bootClassPath); |
82 |
||
49335
3271310a6af7
8196121: runtime/appcds/ClassLoaderTest.java fails silently
iklam
parents:
48791
diff
changeset
|
83 |
TestCommon.run("-XX:+UnlockDiagnosticVMOptions", "-XX:+WhiteBoxAPI", |
3271310a6af7
8196121: runtime/appcds/ClassLoaderTest.java fails silently
iklam
parents:
48791
diff
changeset
|
84 |
"-cp", appJar, bootClassPath, "-Xlog:class+path=trace", "ForNameTest") |
3271310a6af7
8196121: runtime/appcds/ClassLoaderTest.java fails silently
iklam
parents:
48791
diff
changeset
|
85 |
.assertNormalExit(); |
48138 | 86 |
} |
87 |
} |