author | goetz |
Thu, 03 Aug 2017 10:24:34 +0200 | |
changeset 46779 | d80ca591ae48 |
parent 46417 | 1593c061e6af |
child 47103 | a993ec29ec75 |
permissions | -rw-r--r-- |
36508 | 1 |
/* |
46389 | 2 |
* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved. |
36508 | 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 |
* @test |
|
46779
d80ca591ae48
8185436: jtreg: introduce @requires property to disable cds tests
goetz
parents:
46417
diff
changeset
|
26 |
* @requires vm.cds |
36508 | 27 |
* @summary Testing -Xbootclasspath/a support for CDS |
46417
1593c061e6af
8179243: [TESTBUG] CDS tests should be excluded from running with -UseCompressedOops
mseledtsov
parents:
46410
diff
changeset
|
28 |
* @requires (vm.opt.UseCompressedOops == null) | (vm.opt.UseCompressedOops == true) |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40244
diff
changeset
|
29 |
* @library /test/lib |
36508 | 30 |
* @modules java.base/jdk.internal.misc |
31 |
* java.management |
|
43467 | 32 |
* jdk.internal.jvmstat/sun.jvmstat.monitor |
36508 | 33 |
* @compile javax/sound/sampled/MyClass.jasm |
34 |
* @compile org/omg/CORBA/Context.jasm |
|
35 |
* @compile nonjdk/myPackage/MyClass.java |
|
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40244
diff
changeset
|
36 |
* @build LoadClass |
36508 | 37 |
* @run main/othervm BootAppendTests |
38 |
*/ |
|
39 |
||
40 |
import java.io.File; |
|
41 |
import java.io.FileOutputStream; |
|
42 |
import java.io.IOException; |
|
43 |
import java.io.PrintStream; |
|
44 |
||
45 |
import java.nio.file.Path; |
|
46 |
import java.nio.file.Paths; |
|
47 |
||
46389 | 48 |
import jdk.test.lib.cds.CDSOptions; |
49 |
import jdk.test.lib.cds.CDSTestUtils; |
|
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40244
diff
changeset
|
50 |
import jdk.test.lib.process.ProcessTools; |
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40244
diff
changeset
|
51 |
import jdk.test.lib.process.OutputAnalyzer; |
36508 | 52 |
|
53 |
public class BootAppendTests { |
|
54 |
private static final String APP_CLASS = "LoadClass"; |
|
55 |
private static final String BOOT_APPEND_MODULE_CLASS = "javax/sound/sampled/MyClass"; |
|
56 |
private static final String BOOT_APPEND_DUPLICATE_MODULE_CLASS = "org/omg/CORBA/Context"; |
|
57 |
private static final String BOOT_APPEND_CLASS = "nonjdk/myPackage/MyClass"; |
|
58 |
private static final String BOOT_APPEND_MODULE_CLASS_NAME = |
|
59 |
BOOT_APPEND_MODULE_CLASS.replace('/', '.'); |
|
60 |
private static final String BOOT_APPEND_DUPLICATE_MODULE_CLASS_NAME = |
|
61 |
BOOT_APPEND_DUPLICATE_MODULE_CLASS.replace('/', '.'); |
|
62 |
private static final String BOOT_APPEND_CLASS_NAME = |
|
63 |
BOOT_APPEND_CLASS.replace('/', '.'); |
|
64 |
private static final String[] ARCHIVE_CLASSES = |
|
65 |
{BOOT_APPEND_MODULE_CLASS, BOOT_APPEND_DUPLICATE_MODULE_CLASS, BOOT_APPEND_CLASS}; |
|
66 |
||
67 |
private static final String modes[] = {"on", "off"}; |
|
68 |
||
69 |
private static String appJar; |
|
70 |
private static String bootAppendJar; |
|
71 |
||
72 |
public static void main(String... args) throws Exception { |
|
73 |
dumpArchive(); |
|
46389 | 74 |
|
75 |
logTestCase("1"); |
|
36508 | 76 |
testBootAppendModuleClass(); |
46389 | 77 |
|
46410
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
78 |
logTestCase("2"); |
36508 | 79 |
testBootAppendDuplicateModuleClass(); |
46389 | 80 |
|
81 |
logTestCase("3"); |
|
36508 | 82 |
testBootAppendExcludedModuleClass(); |
46389 | 83 |
|
84 |
logTestCase("4"); |
|
36508 | 85 |
testBootAppendDuplicateExcludedModuleClass(); |
46389 | 86 |
|
87 |
logTestCase("5"); |
|
36508 | 88 |
testBootAppendClass(); |
89 |
} |
|
90 |
||
46389 | 91 |
private static void logTestCase(String msg) { |
92 |
System.out.println(); |
|
93 |
System.out.printf("TESTCASE: %s", msg); |
|
94 |
System.out.println(); |
|
95 |
} |
|
96 |
||
36508 | 97 |
static void dumpArchive() throws Exception { |
98 |
// create the classlist |
|
46389 | 99 |
File classlist = CDSTestUtils.makeClassList(ARCHIVE_CLASSES); |
36508 | 100 |
|
101 |
// build jar files |
|
37263
08dec586ed5c
8153300: [TESTBUG] Enhance test/testlibrary/ClassFileInstaller.java to support JAR files
iklam
parents:
36508
diff
changeset
|
102 |
appJar = ClassFileInstaller.writeJar("app.jar", APP_CLASS); |
08dec586ed5c
8153300: [TESTBUG] Enhance test/testlibrary/ClassFileInstaller.java to support JAR files
iklam
parents:
36508
diff
changeset
|
103 |
bootAppendJar = ClassFileInstaller.writeJar("bootAppend.jar", |
36508 | 104 |
BOOT_APPEND_MODULE_CLASS, BOOT_APPEND_DUPLICATE_MODULE_CLASS, BOOT_APPEND_CLASS); |
105 |
||
106 |
||
46389 | 107 |
OutputAnalyzer out = CDSTestUtils.createArchiveAndCheck( |
108 |
"-Xbootclasspath/a:" + bootAppendJar, |
|
109 |
"-XX:SharedClassListFile=" + classlist.getPath()); |
|
36508 | 110 |
// Make sure all the classes were successfully archived. |
111 |
for (String archiveClass : ARCHIVE_CLASSES) { |
|
46389 | 112 |
out.shouldNotContain("Preload Warning: Cannot find " + archiveClass); |
36508 | 113 |
} |
114 |
} |
|
115 |
||
116 |
// Test #1: If a class on -Xbootclasspath/a is from a package defined in |
|
117 |
// bootmodules, the class is not loaded at runtime. |
|
118 |
// Verify the behavior is the same when the class is archived |
|
119 |
// with CDS enabled at runtime. |
|
120 |
// |
|
121 |
// The javax.sound.sampled package is defined in the java.desktop module. |
|
122 |
// The archived javax.sound.sampled.MyClass from the -Xbootclasspath/a |
|
123 |
// should not be loaded at runtime. |
|
124 |
public static void testBootAppendModuleClass() throws Exception { |
|
125 |
for (String mode : modes) { |
|
46389 | 126 |
CDSOptions opts = (new CDSOptions()) |
127 |
.setXShareMode(mode).setUseVersion(false) |
|
46410
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
128 |
.addPrefix("-Xbootclasspath/a:" + bootAppendJar, "-cp", appJar, "-showversion") |
46389 | 129 |
.addSuffix(APP_CLASS, BOOT_APPEND_MODULE_CLASS_NAME); |
130 |
||
46410
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
131 |
OutputAnalyzer out = CDSTestUtils.runWithArchive(opts); |
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
132 |
CDSTestUtils.checkExec(out, opts, "java.lang.ClassNotFoundException: javax.sound.sampled.MyClass"); |
36508 | 133 |
} |
134 |
} |
|
135 |
||
136 |
// Test #2: If a class on -Xbootclasspath/a has the same fully qualified |
|
137 |
// name as a class defined in boot modules, the class is not loaded |
|
138 |
// from -Xbootclasspath/a. Verify the behavior is the same at runtime |
|
139 |
// when CDS is enabled. |
|
140 |
// |
|
141 |
// The org.omg.CORBA.Context is a boot module class. The class on |
|
142 |
// the -Xbootclasspath/a path that has the same fully-qualified name |
|
143 |
// should not be loaded at runtime when CDS is enabled. |
|
144 |
// The one from the boot modules should be loaded instead. |
|
145 |
public static void testBootAppendDuplicateModuleClass() throws Exception { |
|
146 |
for (String mode : modes) { |
|
46389 | 147 |
CDSOptions opts = (new CDSOptions()) |
148 |
.setXShareMode(mode).setUseVersion(false) |
|
46410
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
149 |
.addPrefix("--add-modules", "java.corba", "-showversion", |
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
150 |
"-Xbootclasspath/a:" + bootAppendJar, "-cp", appJar) |
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
151 |
.addSuffix("-Xlog:class+load=info", |
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
152 |
APP_CLASS, BOOT_APPEND_DUPLICATE_MODULE_CLASS_NAME); |
46389 | 153 |
|
46410
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
154 |
OutputAnalyzer out = CDSTestUtils.runWithArchive(opts); |
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
155 |
CDSTestUtils.checkExec(out, opts, "[class,load] org.omg.CORBA.Context source: jrt:/java.corba"); |
36508 | 156 |
} |
157 |
} |
|
158 |
||
159 |
// Test #3: If a class on -Xbootclasspath/a is from a package defined in boot modules, |
|
160 |
// the class can be loaded from -Xbootclasspath/a when the module is excluded |
|
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
38151
diff
changeset
|
161 |
// using --limit-modules. Verify the behavior is the same at runtime when CDS |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
38151
diff
changeset
|
162 |
// is enabled. |
36508 | 163 |
// |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
38151
diff
changeset
|
164 |
// The java.desktop module is excluded using --limit-modules at runtime, |
36508 | 165 |
// javax.sound.sampled.MyClass is archived from -Xbootclasspath/a. It can be |
166 |
// loaded from the archive at runtime. |
|
167 |
public static void testBootAppendExcludedModuleClass() throws Exception { |
|
168 |
for (String mode : modes) { |
|
46389 | 169 |
CDSOptions opts = (new CDSOptions()) |
170 |
.setXShareMode(mode).setUseVersion(false) |
|
46410
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
171 |
.addPrefix("-Xbootclasspath/a:" + bootAppendJar, "-showversion", |
46389 | 172 |
"--limit-modules=java.base", "-cp", appJar) |
173 |
.addSuffix("-Xlog:class+load=info", |
|
174 |
APP_CLASS, BOOT_APPEND_MODULE_CLASS_NAME); |
|
175 |
||
46410
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
176 |
OutputAnalyzer out = CDSTestUtils.runWithArchive(opts); |
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
177 |
CDSTestUtils.checkExec(out, opts, "[class,load] javax.sound.sampled.MyClass"); |
36508 | 178 |
|
179 |
// When CDS is enabled, the shared class should be loaded from the archive. |
|
180 |
if (mode.equals("on")) { |
|
46410
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
181 |
CDSTestUtils.checkExec(out, opts, "[class,load] javax.sound.sampled.MyClass source: shared objects file"); |
36508 | 182 |
} |
183 |
} |
|
184 |
} |
|
185 |
||
186 |
// Test #4: If a class on -Xbootclasspath/a has the same fully qualified |
|
187 |
// name as a class defined in boot modules, the class is loaded |
|
188 |
// from -Xbootclasspath/a when the boot module is excluded using |
|
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
38151
diff
changeset
|
189 |
// --limit-modules. Verify the behavior is the same at runtime |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
38151
diff
changeset
|
190 |
// when CDS is enabled. |
36508 | 191 |
// |
192 |
// The org.omg.CORBA.Context is a boot module class. The class |
|
193 |
// on -Xbootclasspath/a that has the same fully-qualified name |
|
194 |
// as org.omg.CORBA.Context can be loaded at runtime when |
|
195 |
// java.corba is excluded. |
|
196 |
public static void testBootAppendDuplicateExcludedModuleClass() throws Exception { |
|
197 |
for (String mode : modes) { |
|
46389 | 198 |
CDSOptions opts = (new CDSOptions()) |
199 |
.setXShareMode(mode).setUseVersion(false) |
|
46410
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
200 |
.addPrefix("-Xbootclasspath/a:" + bootAppendJar, "-showversion", |
46389 | 201 |
"--limit-modules=java.base", "-cp", appJar) |
202 |
.addSuffix("-Xlog:class+load=info", |
|
203 |
APP_CLASS, BOOT_APPEND_DUPLICATE_MODULE_CLASS_NAME); |
|
204 |
||
46410
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
205 |
OutputAnalyzer out = CDSTestUtils.runWithArchive(opts); |
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
206 |
CDSTestUtils.checkExec(out, opts, "[class,load] org.omg.CORBA.Context"); |
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
207 |
if (!CDSTestUtils.isUnableToMap(out)) { |
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
208 |
out.shouldMatch(".*\\[class,load\\] org.omg.CORBA.Context source:.*bootAppend.jar"); |
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
209 |
} |
36508 | 210 |
} |
211 |
} |
|
212 |
||
213 |
// Test #5: If a class on -Xbootclasspath/a is not from named modules, |
|
214 |
// the class can be loaded at runtime. Verify the behavior is |
|
215 |
// the same at runtime when CDS is enabled. |
|
216 |
// |
|
217 |
// The nonjdk.myPackage is not defined in named modules. The |
|
218 |
// archived nonjdk.myPackage.MyClass from -Xbootclasspath/a |
|
219 |
// can be loaded at runtime when CDS is enabled. |
|
220 |
public static void testBootAppendClass() throws Exception { |
|
221 |
for (String mode : modes) { |
|
46389 | 222 |
CDSOptions opts = (new CDSOptions()) |
223 |
.setXShareMode(mode).setUseVersion(false) |
|
46410
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
224 |
.addPrefix("-Xbootclasspath/a:" + bootAppendJar, "-showversion", |
46389 | 225 |
"--limit-modules=java.base", "-cp", appJar) |
226 |
.addSuffix("-Xlog:class+load=info", |
|
227 |
APP_CLASS, BOOT_APPEND_CLASS_NAME); |
|
228 |
||
46410
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
229 |
OutputAnalyzer out = CDSTestUtils.runWithArchive(opts); |
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
230 |
CDSTestUtils.checkExec(out, opts, "[class,load] nonjdk.myPackage.MyClass"); |
36508 | 231 |
|
232 |
// If CDS is enabled, the nonjdk.myPackage.MyClass should be loaded |
|
233 |
// from the shared archive. |
|
234 |
if (mode.equals("on")) { |
|
46410
5ffd0f5000cc
8179103: [Testbug] re-enable the runtime/SharedArchiveFile/BootAppendTests.java test
ccheung
parents:
46389
diff
changeset
|
235 |
CDSTestUtils.checkExec(out, opts, |
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
37263
diff
changeset
|
236 |
"[class,load] nonjdk.myPackage.MyClass source: shared objects file"); |
36508 | 237 |
} |
238 |
} |
|
239 |
} |
|
240 |
} |