author | jiefu |
Wed, 06 Nov 2019 13:43:25 +0800 | |
changeset 58944 | bb2a436e616c |
parent 57898 | 5ddb746d45e0 |
child 58679 | 9c3209ff7550 |
permissions | -rw-r--r-- |
48138 | 1 |
/* |
54927 | 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 At run time, it is OK to append new elements to the classpath that was used at dump time. |
|
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/HelloMore.java |
|
51990
6003e034cdd8
8209946: [TESTBUG] CDS tests should use "@run driver"
iklam
parents:
48979
diff
changeset
|
33 |
* @run driver AppendClasspath |
48138 | 34 |
*/ |
35 |
||
36 |
import java.io.File; |
|
55524
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
37 |
import java.nio.file.Files; |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
38 |
import java.nio.file.Paths; |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
39 |
import java.nio.file.StandardCopyOption; |
48138 | 40 |
import jdk.test.lib.process.OutputAnalyzer; |
41 |
||
42 |
public class AppendClasspath { |
|
43 |
||
44 |
public static void main(String[] args) throws Exception { |
|
45 |
String appJar = JarBuilder.getOrCreateHelloJar(); |
|
46 |
String appJar2 = JarBuilder.build("AppendClasspath_HelloMore", "HelloMore"); |
|
47 |
||
48 |
// Dump an archive with a specified JAR file in -classpath |
|
49 |
TestCommon.testDump(appJar, TestCommon.list("Hello")); |
|
50 |
||
51 |
// PASS: 1) runtime with classpath containing the one used in dump time |
|
48979
514c73a1955b
8179249: Improve process output analysis in CDS tests
iklam
parents:
48469
diff
changeset
|
52 |
TestCommon.run( |
48138 | 53 |
"-cp", appJar + File.pathSeparator + appJar2, |
48979
514c73a1955b
8179249: Improve process output analysis in CDS tests
iklam
parents:
48469
diff
changeset
|
54 |
"HelloMore") |
514c73a1955b
8179249: Improve process output analysis in CDS tests
iklam
parents:
48469
diff
changeset
|
55 |
.assertNormalExit(); |
48138 | 56 |
|
55524
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
57 |
// PASS: 2) runtime has an non-existing jar in the -cp |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
58 |
String classDir = System.getProperty("test.classes"); |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
59 |
String newFile = "non-exist.jar"; |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
60 |
String nonExistPath = classDir + File.separator + newFile; |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
61 |
String classPath = appJar + File.pathSeparator + nonExistPath; |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
62 |
File nonExistJar = new File(classDir, newFile); |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
63 |
if (nonExistJar.exists()) { |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
64 |
nonExistJar.delete(); |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
65 |
} |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
66 |
TestCommon.run( |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
67 |
"-cp", classPath, |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
68 |
"-Xlog:class+path=trace", |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
69 |
"Hello") |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
70 |
.assertNormalExit(); |
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
71 |
|
48138 | 72 |
final String errorMessage1 = "Unable to use shared archive"; |
73 |
final String errorMessage2 = "shared class paths mismatch"; |
|
55524
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
74 |
// FAIL: 1) runtime with classpath different from the one used in dump time |
48138 | 75 |
// (runtime has an extra jar file prepended to the class path) |
48979
514c73a1955b
8179249: Improve process output analysis in CDS tests
iklam
parents:
48469
diff
changeset
|
76 |
TestCommon.run( |
54927 | 77 |
"-Xlog:cds", |
48138 | 78 |
"-cp", appJar2 + File.pathSeparator + appJar, |
48979
514c73a1955b
8179249: Improve process output analysis in CDS tests
iklam
parents:
48469
diff
changeset
|
79 |
"HelloMore") |
54927 | 80 |
.assertAbnormalExit(errorMessage1, errorMessage2); |
48138 | 81 |
|
55524
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
82 |
// FAIL: 2) runtime with classpath part of the one used in dump time |
48138 | 83 |
TestCommon.testDump(appJar + File.pathSeparator + appJar2, |
84 |
TestCommon.list("Hello")); |
|
48979
514c73a1955b
8179249: Improve process output analysis in CDS tests
iklam
parents:
48469
diff
changeset
|
85 |
TestCommon.run( |
54927 | 86 |
"-Xlog:cds", |
48138 | 87 |
"-cp", appJar2, |
48979
514c73a1955b
8179249: Improve process output analysis in CDS tests
iklam
parents:
48469
diff
changeset
|
88 |
"Hello") |
54927 | 89 |
.assertAbnormalExit(errorMessage1, errorMessage2); |
48138 | 90 |
|
55524
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
91 |
// FAIL: 3) runtime with same set of jar files in the classpath but |
48138 | 92 |
// with different order |
48979
514c73a1955b
8179249: Improve process output analysis in CDS tests
iklam
parents:
48469
diff
changeset
|
93 |
TestCommon.run( |
54927 | 94 |
"-Xlog:cds", |
48138 | 95 |
"-cp", appJar2 + File.pathSeparator + appJar, |
48979
514c73a1955b
8179249: Improve process output analysis in CDS tests
iklam
parents:
48469
diff
changeset
|
96 |
"HelloMore") |
54927 | 97 |
.assertAbnormalExit(errorMessage1, errorMessage2); |
55524
b279ae9843b8
8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents:
54927
diff
changeset
|
98 |
} |
48138 | 99 |
} |