1 /*
   2  * Copyright (c) 2016, 2017, 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 /*
  26  * @test
  27  * @summary Abort dumping if any of the new jigsaw vm options is specified.
  28  * AppCDS does not support uncompressed oops
  29  * @requires (vm.opt.UseCompressedOops == null) | (vm.opt.UseCompressedOops == true)
  30  * @library /test/lib ..
  31  * @modules java.base/jdk.internal.misc
  32  *          java.management
  33  *          jdk.jartool/sun.tools.jar
  34  *          jdk.internal.jvmstat/sun.jvmstat.monitor
  35  * @compile ../test-classes/Hello.java
  36  * @run main CheckUnsupportedDumpingOptions
  37  */
  38 
  39 import jdk.test.lib.compiler.InMemoryJavaCompiler;
  40 import jdk.test.lib.process.OutputAnalyzer;
  41 
  42 public class CheckUnsupportedDumpingOptions {
  43     private static final String[] jigsawOptions = {
  44         "-m",
  45         "--limit-modules",
  46         "--module-path",
  47         "--upgrade-module-path",
  48         "--patch-module"
  49     };
  50     private static final String[] optionValues = {
  51         "mymod",
  52         "mymod",
  53         "mydir",
  54         ".",
  55         "java.naming=javax.naming.spi.NamingManger"
  56     };
  57     private static final int infoIdx = 1;
  58 
  59     public static void main(String[] args) throws Exception {
  60         String source = "package javax.naming.spi; "                +
  61                         "public class NamingManager { "             +
  62                         "    static { "                             +
  63                         "        System.out.println(\"I pass!\"); " +
  64                         "    } "                                    +
  65                         "}";
  66         ClassFileInstaller.writeClassToDisk("javax/naming/spi/NamingManager",
  67             InMemoryJavaCompiler.compile("javax.naming.spi.NamingManager", source, "--patch-module=java.naming"),
  68             "mods/java.naming");
  69 
  70         JarBuilder.build("hello", "Hello");
  71         String appJar = TestCommon.getTestJar("hello.jar");
  72         String appClasses[] = {"Hello"};
  73         for (int i = 0; i < jigsawOptions.length; i++) {
  74             OutputAnalyzer output;
  75             if (i == 5) {
  76                 // --patch-module
  77                 output = TestCommon.dump(appJar, appClasses, "-Xlog:cds,cds+hashtables",
  78                                          jigsawOptions[i] + optionValues[i] + appJar);
  79             } else {
  80                 output = TestCommon.dump(appJar, appClasses, "-Xlog:cds,cds+hashtables",
  81                                          jigsawOptions[i], optionValues[i]);
  82             }
  83             if (i < infoIdx) {
  84                 output.shouldContain("Cannot use the following option " +
  85                     "when dumping the shared archive: " + jigsawOptions[i])
  86                       .shouldHaveExitValue(1);
  87             } else {
  88                 output.shouldContain("Info: the " + jigsawOptions[i] +
  89                     " option is ignored when dumping the shared archive");
  90                 if (optionValues[i].equals("mymod")) {
  91                       // java will throw FindException for a module
  92                       // which cannot be found during init_phase2() of vm init
  93                       output.shouldHaveExitValue(1)
  94                             .shouldContain("java.lang.module.FindException: Module mymod not found");
  95                 } else {
  96                       output.shouldHaveExitValue(0);
  97                 }
  98             }
  99         }
 100     }
 101 }
 102