1 /*
   2  * Copyright (c) 2016, 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  * @bug 4906940 8130302
  27  * @summary -providerPath, -providerClass, -addprovider, and -providerArg
  28  * @library /lib/testlibrary /test/lib
  29  * @modules java.base/jdk.internal.misc
  30  */
  31 
  32 import jdk.test.lib.JDKToolLauncher;
  33 import jdk.test.lib.process.OutputAnalyzer;
  34 import jdk.test.lib.process.ProcessTools;
  35 import jdk.testlibrary.JarUtils;
  36 
  37 import java.nio.file.*;
  38 
  39 public class AltProvider {
  40 
  41     private static final String TEST_SRC =
  42             Paths.get(System.getProperty("test.src")).toString();
  43 
  44     private static final Path MOD_SRC_DIR = Paths.get(TEST_SRC, "alt");
  45     private static final Path MOD_DEST_DIR = Paths.get("mods");
  46 
  47     private static final String ktCommand = "-keystore x.jks " +
  48             "-storepass changeit -storetype dummyks -list -debug";
  49 
  50     private static final String jsCommand = "-keystore x.jks " +
  51             "-storepass changeit -storetype dummyks -debug x.jar x";
  52 
  53     public static void main(String[] args) throws Throwable {
  54 
  55         // Compile the provider
  56         CompilerUtils.compile(
  57                 MOD_SRC_DIR, MOD_DEST_DIR,
  58                 "--module-source-path",
  59                 MOD_SRC_DIR.toString());
  60 
  61         // Create a keystore
  62         tool("keytool", "-keystore x.jks -storetype jks -genkeypair" +
  63                 " -storepass changeit -keypass changeit -alias x -dname CN=X")
  64                 .shouldHaveExitValue(0);
  65 
  66         // Create a jar file
  67         JarUtils.createJar("x.jar", "x.jks");
  68 
  69         // Test starts here
  70 
  71         // Without new provider
  72         testBoth("", 1, "DUMMYKS not found");
  73 
  74         // legacy use (-providerPath only supported by keytool)
  75         testKeytool("-providerPath mods/test.dummy " +
  76                 "-providerClass org.test.dummy.DummyProvider -providerArg full",
  77                 0, "loadProviderByClass: org.test.dummy.DummyProvider");
  78 
  79         // legacy, on classpath
  80         testBoth("-J-cp -Jmods/test.dummy " +
  81                 "-providerClass org.test.dummy.DummyProvider -providerArg full",
  82                 0, "loadProviderByClass: org.test.dummy.DummyProvider");
  83 
  84         // Wrong name
  85         testBoth("-J-cp -Jmods/test.dummy " +
  86                 "-providerClass org.test.dummy.Dummy -providerArg full",
  87                 1, "Provider \"org.test.dummy.Dummy\" not found");
  88 
  89         // Not a provider name
  90         testBoth("-J-cp -Jmods/test.dummy " +
  91                 "-providerClass java.lang.Object -providerArg full",
  92                 1, "java.lang.Object not a provider");
  93 
  94         // without arg
  95         testBoth("-J-cp -Jmods/test.dummy " +
  96                 "-providerClass org.test.dummy.DummyProvider",
  97                 1, "DUMMYKS not found");
  98 
  99         // old -provider still works
 100         testBoth("-J-cp -Jmods/test.dummy " +
 101                 "-provider org.test.dummy.DummyProvider -providerArg full",
 102                 0, "loadProviderByClass: org.test.dummy.DummyProvider");
 103 
 104         // name in a module
 105         testBoth("-J--module-path=mods " +
 106                 "-addprovider Dummy -providerArg full",
 107                 0, "loadProviderByName: Dummy");
 108 
 109         // -providerClass does not work
 110         testBoth("-J--module-path=mods " +
 111                 "-providerClass org.test.dummy.DummyProvider -providerArg full",
 112                 1, "Provider \"org.test.dummy.DummyProvider\" not found");
 113 
 114         // -addprovider with class does not work
 115         testBoth("-J--module-path=mods " +
 116                 "-addprovider org.test.dummy.DummyProvider -providerArg full",
 117                 1, "Provider named \"org.test.dummy.DummyProvider\" not found");
 118 
 119         // -addprovider without arg does not work
 120         testBoth("-J--module-path=mods " +
 121                 "-addprovider Dummy",
 122                 1, "DUMMYKS not found");
 123     }
 124 
 125     // Test both tools with the same extra options
 126     private static void testBoth(String args, int exitValue, String contains)
 127             throws Throwable {
 128         testKeytool(args, exitValue, contains);
 129         testJarsigner(args, exitValue, contains);
 130     }
 131 
 132     // Test keytool with extra options and check exitValue and output
 133     private static void testKeytool(String args, int exitValue, String contains)
 134             throws Throwable {
 135         tool("keytool", ktCommand + " " + args)
 136                 .shouldHaveExitValue(exitValue)
 137                 .shouldContain(contains);
 138     }
 139 
 140     // Test jarsigner with extra options and check exitValue and output
 141     private static void testJarsigner(String args, int exitValue, String contains)
 142             throws Throwable {
 143         tool("jarsigner", jsCommand + " " + args)
 144                 .shouldHaveExitValue(exitValue)
 145                 .shouldContain(contains);
 146     }
 147 
 148     // Launch a tool with args (space separated string)
 149     private static OutputAnalyzer tool(String tool, String args)
 150             throws Throwable {
 151         JDKToolLauncher l = JDKToolLauncher.createUsingTestJDK(tool);
 152         for (String a: args.split("\\s+")) {
 153             if (a.startsWith("-J")) {
 154                 l.addVMArg(a.substring(2));
 155             } else {
 156                 l.addToolArg(a);
 157             }
 158         }
 159         return ProcessTools.executeCommand(l.getCommand());
 160     }
 161 }