1 /*
   2  * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
   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
  26  * @summary Dumping -XX:SharedArchiveFile should succeed without extra flag to unlock
  27  * @requires vm.cds
  28  * @library /test/lib
  29  * @modules java.base/jdk.internal.misc
  30  *          java.management
  31  *          jdk.jartool/sun.tools.jar
  32  * @compile test-classes/Hello.java
  33  * @run main SharedArchiveFile
  34  */
  35 
  36 import jdk.test.lib.Platform;
  37 import jdk.test.lib.cds.CDSTestUtils;
  38 import jdk.test.lib.process.OutputAnalyzer;
  39 import jdk.test.lib.process.ProcessTools;
  40 import java.util.Properties;
  41 
  42 public class SharedArchiveFile {
  43     public static void main(String[] args) throws Exception {
  44         boolean isProduct = !Platform.isDebugBuild();
  45         String appJar = JarBuilder.getOrCreateHelloJar();
  46 
  47         // 1) Dumping -XX:SharedArchiveFile without -XX:+UseAppCDS should
  48         //    succeed with all binary.
  49         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(true,
  50                 "-cp", appJar, "-XX:SharedArchiveFile=./SharedArchiveFile.jsa", "-Xshare:dump");
  51         OutputAnalyzer out = CDSTestUtils.executeAndLog(pb, "dump");
  52         out.shouldContain("Dumping");
  53 
  54         // 2) Using -XX:SharedArchiveFile with -XX:+UseAppCDS should work
  55         //    on product binary by default.
  56         OutputAnalyzer output3 = TestCommon.dump(appJar, TestCommon.list("Hello"));
  57         output3.shouldContain("Dumping");
  58         output3 = TestCommon.exec(appJar, "Hello");
  59         TestCommon.checkExec(output3, "Hello World");
  60 
  61         // 3) Using -XX:+UseAppCDS should not affect other diagnostic flags,
  62         //    such as LogEvents
  63         OutputAnalyzer output4 = TestCommon.exec(appJar, "-XX:+LogEvents", "Hello");
  64         if (isProduct) {
  65             output4.shouldContain("Error: VM option 'LogEvents' is diagnostic and must be enabled via -XX:+UnlockDiagnosticVMOptions.");
  66         } else {
  67             TestCommon.checkExec(output4, "Hello World");
  68         }
  69 
  70         // 4) 8066921 - Extra -XX:+UseAppCDS
  71         TestCommon.testDump(appJar, TestCommon.list("Hello"), "-XX:+UseAppCDS");
  72         OutputAnalyzer output5 = TestCommon.exec(appJar, "-XX:+UseAppCDS", "Hello");
  73         TestCommon.checkExec(output5);
  74     }
  75 }