test/jdk/sun/security/tools/keytool/RealType.java
changeset 48216 e3b6cb90d7ce
child 59104 046e4024e55a
equal deleted inserted replaced
48215:b8b124236073 48216:e3b6cb90d7ce
       
     1 /*
       
     2  * Copyright (c) 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  * @test
       
    26  * @bug 8192987
       
    27  * @summary keytool should remember real storetype if it is not provided
       
    28  * @library /test/lib
       
    29  * @build jdk.test.lib.SecurityTools
       
    30  *        jdk.test.lib.Utils
       
    31  *        jdk.test.lib.JDKToolFinder
       
    32  *        jdk.test.lib.JDKToolLauncher
       
    33  *        jdk.test.lib.Platform
       
    34  *        jdk.test.lib.process.*
       
    35  * @run main/othervm RealType
       
    36  */
       
    37 
       
    38 import jdk.test.lib.SecurityTools;
       
    39 import jdk.test.lib.process.OutputAnalyzer;
       
    40 
       
    41 import java.nio.file.Files;
       
    42 import java.nio.file.Paths;
       
    43 
       
    44 public class RealType {
       
    45 
       
    46     public static void main(String[] args) throws Throwable {
       
    47 
       
    48         kt("-genkeypair -alias a -dname CN=A -keypass changeit -storetype jks")
       
    49                 .shouldHaveExitValue(0);
       
    50 
       
    51         // -keypasswd command should be allowed on JKS
       
    52         kt("-keypasswd -alias a -new t0ps3cr3t")
       
    53                 .shouldHaveExitValue(0);
       
    54 
       
    55         Files.delete(Paths.get("ks"));
       
    56 
       
    57         kt("-genkeypair -alias a -dname CN=A -keypass changeit -storetype pkcs12")
       
    58                 .shouldHaveExitValue(0);
       
    59 
       
    60         // A pkcs12 keystore cannot be loaded as a JCEKS keystore
       
    61         kt("-list -storetype jceks").shouldHaveExitValue(1);
       
    62     }
       
    63 
       
    64     static OutputAnalyzer kt(String arg) throws Exception {
       
    65         return SecurityTools.keytool("-debug -keystore ks -storepass changeit " + arg);
       
    66     }
       
    67 }