|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2019, 2022, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
|
40 | 40 | import jdk.test.lib.process.OutputAnalyzer;
|
41 | 41 |
|
42 | 42 | public class NonExistClasspath {
|
| 43 | + static final String outDir = CDSTestUtils.getOutputDir(); |
| 44 | + static final String newFile = "non-exist.jar"; |
| 45 | + static final String nonExistPath = outDir + File.separator + newFile; |
| 46 | + static final String emptyJarPath = outDir + File.separator + "empty.jar"; |
| 47 | + static final String errorMessage1 = "Unable to use shared archive"; |
| 48 | + static final String errorMessage2 = "shared class paths mismatch"; |
| 49 | + |
43 | 50 | public static void main(String[] args) throws Exception {
|
44 | 51 | String appJar = JarBuilder.getOrCreateHelloJar();
|
45 | 52 | doTest(appJar, false);
|
46 | 53 | doTest(appJar, true);
|
47 | 54 | }
|
48 | 55 |
|
49 | 56 | static void doTest(String appJar, boolean bootcp) throws Exception {
|
50 |
| - String outDir = CDSTestUtils.getOutputDir(); |
51 |
| - String newFile = "non-exist.jar"; |
52 |
| - String nonExistPath = outDir + File.separator + newFile; |
53 |
| - final String errorMessage1 = "Unable to use shared archive"; |
54 |
| - final String errorMessage2 = "shared class paths mismatch"; |
55 | 57 | final String errorMessage3 = (bootcp ? "BOOT" : "APP") + " classpath mismatch";
|
56 |
| - |
57 | 58 | (new File(nonExistPath)).delete();
|
58 | 59 |
|
59 | 60 | String classPath = nonExistPath + File.pathSeparator + appJar;
|
@@ -100,6 +101,81 @@ static void doTest(String appJar, boolean bootcp) throws Exception {
|
100 | 101 | "-Xlog:class+path=trace",
|
101 | 102 | "Hello"))
|
102 | 103 | .assertAbnormalExit(errorMessage1, errorMessage2, errorMessage3);
|
| 104 | + |
| 105 | + if (bootcp) { |
| 106 | + doMoreBCPTests(appJar, errorMessage3); |
| 107 | + } |
| 108 | + } |
| 109 | + |
| 110 | + static void doMoreBCPTests(String appJar, String errorMessage3) throws Exception { |
| 111 | + |
| 112 | + // Dump an archive with non-existent boot class path. |
| 113 | + (new File(nonExistPath)).delete(); |
| 114 | + TestCommon.testDump("foobar", TestCommon.list("Hello"), make_args(true, nonExistPath, "-cp", appJar)); |
| 115 | + |
| 116 | + // Run with non-existent boot class path, test should pass. |
| 117 | + TestCommon.run(make_args(true, |
| 118 | + nonExistPath, |
| 119 | + "-cp", appJar, |
| 120 | + "-Xlog:class+path=trace", |
| 121 | + "Hello")) |
| 122 | + .assertNormalExit(); |
| 123 | + |
| 124 | + // Run with existent boot class path, test should fail. |
| 125 | + TestCommon.run(make_args(true, |
| 126 | + appJar, |
| 127 | + "-cp", appJar, |
| 128 | + "-Xlog:class+path=trace", |
| 129 | + "Hello")) |
| 130 | + .assertAbnormalExit(errorMessage1, errorMessage2, errorMessage3); |
| 131 | + |
| 132 | + // Dump an archive with existent boot class path. |
| 133 | + TestCommon.testDump("foobar", TestCommon.list("Hello"), make_args(true, appJar)); |
| 134 | + |
| 135 | + // Run with non-existent boot class path, test should fail. |
| 136 | + TestCommon.run(make_args(true, |
| 137 | + nonExistPath, |
| 138 | + "-Xlog:class+path=trace", |
| 139 | + "Hello")) |
| 140 | + .assertAbnormalExit(errorMessage1, errorMessage2, errorMessage3); |
| 141 | + |
| 142 | + // Run with existent boot class path, test should pass. |
| 143 | + TestCommon.run(make_args(true, |
| 144 | + appJar, |
| 145 | + "-Xlog:class+path=trace", |
| 146 | + "Hello")) |
| 147 | + .assertNormalExit(); |
| 148 | + |
| 149 | + // Test with empty jar file. |
| 150 | + (new File(emptyJarPath)).delete(); |
| 151 | + (new File(emptyJarPath)).createNewFile(); |
| 152 | + |
| 153 | + // Dump an archive with an empty jar in the boot class path. |
| 154 | + TestCommon.testDump("foobar", TestCommon.list("Hello"), make_args(true, emptyJarPath, "-cp", appJar)); |
| 155 | + |
| 156 | + // Run with an empty jar in boot class path, test should pass. |
| 157 | + TestCommon.run(make_args(true, |
| 158 | + emptyJarPath, |
| 159 | + "-cp", appJar, |
| 160 | + "-Xlog:class+path=trace", |
| 161 | + "Hello")) |
| 162 | + .assertNormalExit(); |
| 163 | + |
| 164 | + // Run with non-existent boot class path, test should pass. |
| 165 | + TestCommon.run(make_args(true, |
| 166 | + nonExistPath, |
| 167 | + "-cp", appJar, |
| 168 | + "-Xlog:class+path=trace", |
| 169 | + "Hello")) |
| 170 | + .assertNormalExit(); |
| 171 | + |
| 172 | + // Run with existent boot class path, test should fail. |
| 173 | + TestCommon.run(make_args(true, |
| 174 | + appJar, |
| 175 | + "-cp", appJar, |
| 176 | + "-Xlog:class+path=trace", |
| 177 | + "Hello")) |
| 178 | + .assertAbnormalExit(errorMessage1, errorMessage2, errorMessage3); |
103 | 179 | }
|
104 | 180 |
|
105 | 181 | static String[] make_args(boolean bootcp, String cp, String... suffix) {
|
|
0 commit comments