jdk-24/test/hotspot/jtreg/runtime/cds/appcds/dynamicArchive/SharedArchiveFileOption.java
2023-05-11 19:37:16 +00:00

288 lines
12 KiB
Java

/*
* Copyright (c) 2019, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*
*/
/*
* @test
* @bug 8276787
* @summary Some negative tests for the SharedArchiveFile option
* @requires vm.cds
* @library /test/lib /test/hotspot/jtreg/runtime/cds/appcds /test/hotspot/jtreg/runtime/cds/appcds/test-classes
* @build Hello
* @build jdk.test.whitebox.WhiteBox
* @run driver jdk.test.lib.helpers.ClassFileInstaller -jar hello.jar Hello
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
* @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xbootclasspath/a:. SharedArchiveFileOption
*/
import java.io.File;
import jdk.test.lib.Asserts;
import jdk.test.lib.helpers.ClassFileInstaller;
import jtreg.SkippedException;
public class SharedArchiveFileOption extends DynamicArchiveTestBase {
public static void main(String[] args) throws Exception {
runTest(SharedArchiveFileOption::testCustomBase);
}
static String baseArchiveName2;
static void testCustomBase() throws Exception {
String topArchiveName = getNewArchiveName("top");
String baseArchiveName = getNewArchiveName("base");
baseArchiveName2 = getNewArchiveName("base2");
TestCommon.dumpBaseArchive(baseArchiveName);
TestCommon.dumpBaseArchive(baseArchiveName2);
doTest(baseArchiveName, topArchiveName);
}
private static int testnum = 0;
private static void testcase(String s) {
System.out.println("\n\nTest #" + (++testnum) + " " + s);
}
private interface MyRunnable {
public void run() throws Exception;
}
private static void doTest(String baseArchiveName, String topArchiveName) throws Exception {
String appJar = ClassFileInstaller.getJarPath("hello.jar");
String mainClass = "Hello";
String dummyArchiveName = getNewArchiveName("dummy");
testcase("-Xshare:dump specified with -XX:ArchiveClassesAtExit");
dump2(dummyArchiveName, dummyArchiveName,
"-Xlog:cds",
"-Xlog:cds+dynamic=debug",
"-Xshare:dump",
"-cp", appJar, mainClass)
.assertAbnormalExit(output -> {
output.shouldContain("-XX:ArchiveClassesAtExit cannot be used with -Xshare:dump");
});
testcase("more than 1 archive file specified in -XX:SharedArchiveFile during dynamic dump");
String dummyArchives = dummyArchiveName + File.pathSeparator + dummyArchiveName;
dump2(dummyArchives, dummyArchiveName,
"-Xlog:cds",
"-Xlog:cds+dynamic=debug",
"-cp", appJar, mainClass)
.assertAbnormalExit(output -> {
output.shouldContain("Cannot have more than 1 archive file specified in -XX:SharedArchiveFile during CDS dumping");
});
testcase("normal dynamic archive dumping");
dump2(baseArchiveName, topArchiveName,
"-Xlog:cds",
"-Xlog:cds+dynamic=debug",
"-cp", appJar, mainClass)
.assertNormalExit(output -> {
output.shouldContain("Written dynamic archive 0x");
});
testcase("same archive file specified for -XX:SharedArchiveFile and -XX:ArchiveClassesAtExit");
dump2(baseArchiveName, baseArchiveName,
"-Xlog:cds",
"-Xlog:cds+dynamic=debug",
"-cp", appJar, mainClass)
.assertAbnormalExit(output -> {
output.shouldContain("Cannot have the same archive file specified for -XX:SharedArchiveFile and -XX:ArchiveClassesAtExit: "
+ baseArchiveName);
});
testcase("a top archive specified in the base archive position");
run2(topArchiveName, baseArchiveName,
"-Xlog:class+load",
"-Xlog:cds+dynamic=debug,cds=debug",
"-cp", appJar, mainClass)
.assertAbnormalExit(output -> {
output.shouldMatch("Not a base shared archive:.*top.*.jsa");
});
testcase("a base archive specified in the top archive position");
run2(baseArchiveName, baseArchiveName2,
"-Xlog:class+load",
"-Xlog:cds+dynamic=debug,cds=debug",
"-cp", appJar, mainClass)
.assertAbnormalExit(output -> {
output.shouldMatch("Not a top shared archive:.*base.*.jsa");
});
testcase("more than 2 archives specified in the -XX:ShareArchiveFile option");
String baseArchives = baseArchiveName + File.pathSeparator + baseArchiveName2;
run2(baseArchives, topArchiveName,
"-Xlog:class+load",
"-Xlog:cds+dynamic=debug,cds=debug",
"-cp", appJar, mainClass)
.assertAbnormalExit(output -> {
output.shouldContain(
"Cannot have more than 2 archive files specified in the -XX:SharedArchiveFile option");
});
testcase("base archive not specified");
final String topArchive = File.pathSeparator + topArchiveName;
run2(topArchive, null,
"-Xlog:class+load",
"-Xlog:cds+dynamic=debug,cds=debug",
"-cp", appJar, mainClass)
.assertAbnormalExit(output -> {
output.shouldContain(
"Base archive was not specified: " + topArchive);
});
testcase("top archive not specified");
final String baseArchive = baseArchiveName + File.pathSeparator;
run2(baseArchive, null,
"-Xlog:class+load",
"-Xlog:cds+dynamic=debug,cds=debug",
"-cp", appJar, mainClass)
.assertAbnormalExit(output -> {
output.shouldContain(
"Top archive was not specified: " + baseArchive);
});
testcase("A dynamic archive is already loaded when -XX:SharedArchiveFile is specified");
dump2(baseArchiveName /*this is overridden by -XX:SharedArchiveFile= below*/,
topArchiveName,
"-XX:SharedArchiveFile=" + topArchiveName,
"-cp", appJar, mainClass)
.assertAbnormalExit("-XX:ArchiveClassesAtExit is unsupported when a dynamic CDS archive is specified in -XX:SharedArchiveFile:");
testcase("A dynamic archive is already loaded when -XX:+RecordDynamicDumpInfo is specified");
if (isUseSharedSpacesDisabled()) {
System.out.println("This test is not applicable when JTREG tests are executed with -Xshare:off, or if the JDK doesn't have a default archive.");
} else {
run2(null, topArchiveName,
"-XX:+RecordDynamicDumpInfo",
"-cp", appJar, mainClass)
.assertAbnormalExit("-XX:+RecordDynamicDumpInfo is unsupported when a dynamic CDS archive is specified in -XX:SharedArchiveFile:");
}
testcase("-XX:+RecordDynamicDumpInfo cannot be used with -XX:ArchiveClassesAtExit");
dump2(baseArchiveName,
topArchiveName,
"-XX:+RecordDynamicDumpInfo",
"-cp", appJar, mainClass)
.assertAbnormalExit("-XX:+RecordDynamicDumpInfo cannot be used with -XX:ArchiveClassesAtExit");
testcase("Specifying -XX:+RecordDynamicDumpInfo should not cause dynamic dump");
run2(baseArchiveName, null,
"-XX:+RecordDynamicDumpInfo",
"-Xlog:cds+dynamic=debug",
"-cp", appJar, mainClass)
.assertNormalExit(output -> {
output.shouldNotMatch("\\[cds,dynamic");
});
{
String ERROR = "-XX:ArchiveClassesAtExit is unsupported when base CDS archive is not loaded";
testcase("-XX:ArchiveClassesAtExit with CDS disabled (-Xshare:off)");
dump2(baseArchiveName,
topArchiveName,
"-Xshare:off",
"-Xlog:cds",
"-cp", appJar, mainClass)
.assertNormalExit(output -> {
output.shouldNotMatch("\\[cds,dynamic");
output.shouldContain(ERROR);
});
testcase("-XX:ArchiveClassesAtExit with CDS disabled (Base archive cannot be mapped -- doesn't exist");
dump2(baseArchiveName + ".notExist",
topArchiveName,
"-Xlog:cds",
"-Xshare:auto",
"-cp", appJar, mainClass)
.assertNormalExit(output -> {
output.shouldNotMatch("\\[cds,dynamic");
output.shouldContain(ERROR);
});
testcase("-XX:ArchiveClassesAtExit with CDS disabled (incompatible VM options)");
dump2(baseArchiveName,
topArchiveName,
"--patch-module",
"foo.bar=xxx",
"-Xshare:auto",
"-Xlog:cds",
"-cp", appJar, mainClass)
.assertAbnormalExit("Cannot use the following option when dumping the shared archive: --patch-module");
// following two tests:
// -Xshare:auto -XX:SharedArchiveFile=top.jsa, but base does not exist.
if (!isUseSharedSpacesDisabled()) {
new File(baseArchiveName).delete();
testcase("Archive not loaded -XX:+AutoCreateSharedArchive -XX:SharedArchiveFile=" + topArchiveName);
run(topArchiveName,
"-Xshare:auto",
"-XX:+AutoCreateSharedArchive",
"-cp",
appJar, mainClass)
.assertNormalExit(output -> {
output.shouldContain("warning: -XX:+AutoCreateSharedArchive is unsupported when base CDS archive is not loaded");
});
testcase("Archive not loaded -XX:SharedArchiveFile=" + topArchiveName + " -XX:ArchiveClassesAtExit=" + getNewArchiveName("top3"));
run(topArchiveName,
"-Xshare:auto",
"-XX:ArchiveClassesAtExit=" + getNewArchiveName("top3"),
"-cp",
appJar, mainClass)
.assertNormalExit(output -> {
output.shouldContain(ERROR);
});
}
}
{
String ERROR = "-XX:+RecordDynamicDumpInfo is unsupported when base CDS archive is not loaded";
testcase("-XX:+RecordDynamicDumpInfo with CDS disabled (-Xshare:off)");
run2(baseArchiveName, null,
"-XX:+RecordDynamicDumpInfo",
"-Xshare:off",
"-cp", appJar, mainClass)
.assertAbnormalExit(ERROR);
testcase("-XX:+RecordDynamicDumpInfo with CDS disabled (Base archive cannot be mapped -- doesn't exist");
run2(baseArchiveName + ".notExist", null,
"-XX:+RecordDynamicDumpInfo",
"-Xshare:auto",
"-Xlog:cds",
"-cp", appJar, mainClass)
.assertAbnormalExit(ERROR);
testcase("-XX:+RecordDynamicDumpInfo with CDS disabled (incompatible VM options)");
run2(baseArchiveName + ".notExist", null,
"-XX:+RecordDynamicDumpInfo",
"--patch-module",
"foo.bar=xxx",
"-Xshare:auto",
"-Xlog:cds",
"-cp", appJar, mainClass)
.assertAbnormalExit("CDS is disabled when the --patch-module option is specified",
ERROR);
}
}
}