jdk/test/sun/security/tools/keytool/KeyToolTest.java
author weijun
Thu, 26 Feb 2015 08:08:52 +0800
changeset 29120 db85cf043b4f
parent 29111 e9103f166a4a
child 29225 fb5b4b9d12f5
permissions -rw-r--r--
8073853: KeyToolTest.java has too many too long lines Reviewed-by: mullan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
12871
b583b4c82a82 7174351: test/sun/security/tools/keytool/standard.sh failed after new Hashtable
weijun
parents: 10138
diff changeset
     2
 * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2067
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2067
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2067
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Testing keytool
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author weijun.wang
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * Run through autotest.sh and manualtest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * Testing non-PKCS11 keystores:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 *       echo | java -Dfile KeyToolTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * Testing NSS PKCS11 keystores:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *       # testing NSS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *       # make sure the NSS db files are in current directory and writable
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *       echo | java -Dnss -Dnss.lib=/path/to/libsoftokn3.so KeyToolTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * Testing Solaris Cryptography Framework PKCS11 keystores:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *       # make sure you've already run pktool and set test12 as pin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *       echo | java -Dsolaris KeyToolTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * ATTENTION:
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    45
 * Exception in thread "main" java.security.ProviderException:
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    46
 *   sun.security.pkcs11.wrapper.PKCS11Exception: CKR_KEY_SIZE_RANGE
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *       at sun.security.pkcs11.P11Signature.engineSign(P11Signature.java:420)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *       ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * Caused by: sun.security.pkcs11.wrapper.PKCS11Exception: CKR_KEY_SIZE_RANGE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *       at sun.security.pkcs11.wrapper.PKCS11.C_SignFinal(Native Method)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *       at sun.security.pkcs11.P11Signature.engineSign(P11Signature.java:391)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 *       ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * been observed. Possibly a Solaris bug
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * ATTENTION:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * NSS PKCS11 config file are changed, DSA not supported now.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
import java.security.KeyStore;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
import sun.security.x509.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
import java.io.*;
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
    62
import java.security.KeyPairGenerator;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
    63
import java.security.NoSuchAlgorithmException;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
    64
import java.util.*;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
    65
import java.security.cert.X509Certificate;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
    66
import sun.security.util.ObjectIdentifier;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
public class KeyToolTest {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    // The stdout and stderr outputs after a keytool run
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    String out;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    String err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    // the output of println() in KeyTool.run
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    String ex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    String lastInput = "", lastCommand = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    private static final boolean debug =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        System.getProperty("debug") != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    static final String NSS_P11_ARG =
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    82
            "-keystore NONE -storetype PKCS11 -providerName SunPKCS11-nss " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    83
            "-providerClass sun.security.pkcs11.SunPKCS11 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    84
            "-providerArg p11-nss.txt ";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    static final String NSS_SRC_P11_ARG =
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    86
            "-srckeystore NONE -srcstoretype PKCS11 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    87
            "-srcproviderName SunPKCS11-nss " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    88
            "-providerClass sun.security.pkcs11.SunPKCS11 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    89
            "-providerArg p11-nss.txt ";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    static final String NZZ_P11_ARG =
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    91
            "-keystore NONE -storetype PKCS11 -providerName SunPKCS11-nzz " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    92
            "-providerClass sun.security.pkcs11.SunPKCS11 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    93
            "-providerArg p11-nzz.txt ";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    static final String NZZ_SRC_P11_ARG =
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    95
            "-srckeystore NONE -srcstoretype PKCS11 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    96
            "-srcproviderName SunPKCS11-nzz " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    97
            "-providerClass sun.security.pkcs11.SunPKCS11 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
    98
            "-providerArg p11-nzz.txt ";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    static final String SUN_P11_ARG = "-keystore NONE -storetype PKCS11 ";
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   100
    static final String SUN_SRC_P11_ARG =
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   101
            "-srckeystore NONE -srcstoretype PKCS11 ";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    String p11Arg, srcP11Arg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    /** Creates a new instance of KeyToolTest */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    KeyToolTest() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        // so that there is "Warning" and not translated into other language
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        Locale.setDefault(Locale.US);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * Helper, removes a file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    void remove(String filename) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            System.err.println("Removing " + filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        new File(filename).delete();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        if (new File(filename).exists()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            throw new RuntimeException("Error deleting " + filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * Run a set of keytool command with given terminal input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * @param input the terminal inputs, the characters typed by human
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *        if <code>cmd</code> is running on a terminal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * @param cmd the argument of a keytool command line
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @throws if keytool goes wrong in some place
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    void test(String input, String cmd) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        lastInput = input;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        lastCommand = cmd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
   135
        // "X" is appended so that we can precisely test how input is consumed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        HumanInputStream in = new HumanInputStream(input+"X");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        test(in, cmd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        // make sure the input string is no more no less
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        if(in.read() != 'X' || in.read() != -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            throw new Exception("Input not consumed exactly");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    void test(InputStream in, String cmd) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        // save the original 3 streams
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            System.err.println(cmd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            System.err.print(".");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        PrintStream p1 = System.out;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        PrintStream p2 = System.err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        InputStream i1 = System.in;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        ByteArrayOutputStream b1 = new ByteArrayOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        ByteArrayOutputStream b2 = new ByteArrayOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            System.setIn(in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            System.setOut(new PrintStream(b1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            System.setErr(new PrintStream(b2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
14182
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents: 12871
diff changeset
   163
            // since System.in is overrided, the
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents: 12871
diff changeset
   164
            // sun.security.tools.keytool.Main.main() method will
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
            // never block at user input
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
14182
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents: 12871
diff changeset
   167
            // use -debug so that main() will throw an Exception
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
            // instead of calling System.exit()
14182
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents: 12871
diff changeset
   169
            sun.security.tools.keytool.Main.main(("-debug "+cmd).split("\\s+"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
            out = b1.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            err = b2.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            ex = out;   // now it goes to System.out
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            System.setIn(i1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            System.setOut(p1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            System.setErr(p2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * Call this method if you expect test(input, cmd) should go OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    void testOK(String input, String cmd) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        try {
27344
890be6336eab 8057810: New defaults for DSA keys in jarsigner and keytool
weijun
parents: 14182
diff changeset
   185
            // Workaround for "8057810: Make SHA256withDSA the default
890be6336eab 8057810: New defaults for DSA keys in jarsigner and keytool
weijun
parents: 14182
diff changeset
   186
            // jarsigner and keytool algorithm for DSA keys". Unfortunately
890be6336eab 8057810: New defaults for DSA keys in jarsigner and keytool
weijun
parents: 14182
diff changeset
   187
            // SunPKCS11-NSS does not support SHA256withDSA yet.
890be6336eab 8057810: New defaults for DSA keys in jarsigner and keytool
weijun
parents: 14182
diff changeset
   188
            if (cmd.contains("p11-nss.txt") && cmd.contains("-genkey")
890be6336eab 8057810: New defaults for DSA keys in jarsigner and keytool
weijun
parents: 14182
diff changeset
   189
                    && !cmd.contains("-keyalg")) {
890be6336eab 8057810: New defaults for DSA keys in jarsigner and keytool
weijun
parents: 14182
diff changeset
   190
                cmd += " -sigalg SHA1withDSA -keysize 1024";
890be6336eab 8057810: New defaults for DSA keys in jarsigner and keytool
weijun
parents: 14182
diff changeset
   191
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            test(input, cmd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        } catch(Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            afterFail(input, cmd, "OK");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * Call this method if you expect test(input, cmd) should fail and throw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * an exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    void testFail(String input, String cmd) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        boolean ok;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            test(input, cmd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            ok = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        } catch(Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
            if (e instanceof MissingResourceException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
                ok = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
                ok = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        if(ok) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            afterFail(input, cmd, "FAIL");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            throw new RuntimeException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * Call this method if you expect test(input, cmd) should go OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    void testOK(InputStream is, String cmd) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            test(is, cmd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        } catch(Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            afterFail("", cmd, "OK");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * Call this method if you expect test(input, cmd) should fail and throw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * an exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    void testFail(InputStream is, String cmd) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        boolean ok;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            test(is, cmd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
            ok = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        } catch(Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            ok = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        if(ok) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
            afterFail("", cmd, "FAIL");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
            throw new RuntimeException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * Call this method if you just want to run the command and does
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * not care if it succeeds or fails.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    void testAnyway(String input, String cmd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
            test(input, cmd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        } catch(Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
            ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * Helper method, print some output after a test does not do as expected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    void afterFail(String input, String cmd, String should) {
27344
890be6336eab 8057810: New defaults for DSA keys in jarsigner and keytool
weijun
parents: 14182
diff changeset
   267
        if (cmd.contains("p11-nss.txt")) {
890be6336eab 8057810: New defaults for DSA keys in jarsigner and keytool
weijun
parents: 14182
diff changeset
   268
            cmd = "-J-Dnss.lib=" + System.getProperty("nss.lib") + " " + cmd;
890be6336eab 8057810: New defaults for DSA keys in jarsigner and keytool
weijun
parents: 14182
diff changeset
   269
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        System.err.println("\nTest fails for the command ---\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
                "keytool " + cmd + "\nOr its debug version ---\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
                "keytool -debug " + cmd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        System.err.println("The command result should be " + should +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                ", but it's not. Try run the command manually and type" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                " these input into it: ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        char[] inputChars = input.toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        for (int i=0; i<inputChars.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
            char ch = inputChars[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
            if (ch == '\n') System.err.print("ENTER ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
            else if (ch == ' ') System.err.print("SPACE ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
            else System.err.print(ch + " ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        System.err.println("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        System.err.println("ERR is:\n"+err);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        System.err.println("OUT is:\n"+out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    void assertTrue(boolean bool, String msg) {
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
   292
        if (debug) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
   293
            System.err.println("If not " + bool + ", " + msg);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
   294
        } else {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
   295
            System.err.print("v");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
   296
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        if(!bool) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            afterFail(lastInput, lastCommand, "TRUE");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
   299
                System.err.println(msg);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
            throw new RuntimeException(msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
   304
    void assertTrue(boolean bool) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
   305
        assertTrue(bool, "well...");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
   306
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * Helper method, load a keystore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * @param file file for keystore, null or "NONE" for PKCS11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * @pass password for the keystore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * @type keystore type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * @returns the KeyStore object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * @exception Exception if anything goes wrong
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    KeyStore loadStore(String file, String pass, String type) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        KeyStore ks = KeyStore.getInstance(type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        FileInputStream is = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        if (file != null && !file.equals("NONE")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
            is = new FileInputStream(file);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        ks.load(is, pass.toCharArray());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        is.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        return ks;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * The test suite.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * Maybe it's better to put this outside the KeyToolTest class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    void testAll() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        KeyStore ks;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        remove("x.jceks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        remove("x.p12");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        remove("x2.jceks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        remove("x2.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        remove("x.jks.p1.cert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        // name changes: genkeypair, importcert, exportcert
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        remove("x.jks.p1.cert");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   343
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   344
                "-keypass changeit -genkeypair -alias p1 -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   345
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   346
                "-exportcert -alias p1 -file x.jks.p1.cert");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
        assertTrue(ks.getKey("p1", "changeit".toCharArray()) != null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
            "key not DSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        assertTrue(new File("x.jks.p1.cert").exists(), "p1 export err");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   351
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   352
                "-delete -alias p1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   353
        // importcert, prompt for Yes/No
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   354
        testOK("y\n", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   355
                "-importcert -alias c1 -file x.jks.p1.cert");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   356
        // importcert, -noprompt
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   357
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   358
                "-importcert -alias c2 -file x.jks.p1.cert -noprompt");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        assertTrue(ks.getCertificate("c1") != null, "import c1 err");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        // v3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        byte[] encoded = ks.getCertificate("c1").getEncoded();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        X509CertImpl certImpl = new X509CertImpl(encoded);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        assertTrue(certImpl.getVersion() == 3, "Version is not 3");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        // changealias and keyclone
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   368
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   369
                "-keypass changeit -genkeypair -alias p1 -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   370
        testOK("changeit\n", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   371
                "-changealias -alias p1 -destalias p11");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   372
        testOK("changeit\n", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   373
                "-changealias -alias c1 -destalias c11");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   374
        // press ENTER when prompt for p111's keypass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   375
        testOK("changeit\n\n", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   376
                "-keyclone -alias p11 -destalias p111");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        assertTrue(!ks.containsAlias("p1"), "there is no p1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        assertTrue(!ks.containsAlias("c1"), "there is no c1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        assertTrue(ks.containsAlias("p11"), "there is p11");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        assertTrue(ks.containsAlias("c11"), "there is c11");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        assertTrue(ks.containsAlias("p111"), "there is p111");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        // genSecKey
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        remove("x.jceks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   386
        // DES, no need keysize
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   387
        testOK("changeit\nchangeit\n\n", "-keystore x.jceks -storetype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   388
                "-genseckey -alias s1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   389
        // DES, keysize cannot be 128
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   390
        testFail("changeit\n\n", "-keystore x.jceks -storetype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   391
                "-genseckey -alias s11 -keysize 128");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   392
        // DESede. no need keysize
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   393
        testOK("changeit\n\n", "-keystore x.jceks -storetype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   394
                "-genseckey -keyalg DESede -alias s2");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   395
        // AES, need keysize
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   396
        testFail("changeit\n\n", "-keystore x.jceks -storetype AES " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   397
                "-genseckey -keyalg Rijndael -alias s3");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   398
        testOK("changeit\n\n", "-keystore x.jceks -storetype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   399
                "-genseckey -keyalg AES -alias s3 -keysize 128");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   400
        // about keypass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   401
        // can accept storepass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   402
        testOK("\n", "-keystore x.jceks -storetype JCEKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   403
                "-genseckey -alias s4");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   404
        // or a new one
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   405
        testOK("keypass\nkeypass\n", "-keystore x.jceks -storetype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   406
                "-storepass changeit -genseckey -alias s5");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   407
        // keypass must be valid (prompt 3 times)
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   408
        testOK("bad\n\bad\nkeypass\nkeypass\n", "-keystore x.jceks " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   409
                "-storetype JCEKS -storepass changeit -genseckey -alias s6");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   410
        // keypass must be valid (prompt 3 times)
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   411
        testFail("bad\n\bad\nbad\n", "-keystore x.jceks -storetype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   412
                "-storepass changeit -genseckey -alias s7");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   413
        // keypass must be valid (prompt 3 times)
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   414
        testFail("bad\n\bad\nbad\nkeypass\n", "-keystore x.jceks " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   415
                "-storetype JCEKS -storepass changeit -genseckey -alias s7");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        ks = loadStore("x.jceks", "changeit", "JCEKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   417
        assertTrue(ks.getKey("s1", "changeit".toCharArray())
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   418
                .getAlgorithm().equalsIgnoreCase("DES"), "s1 is DES");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   419
        assertTrue(ks.getKey("s1", "changeit".toCharArray())
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   420
                .getEncoded().length == 8,  "DES is 56");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   421
        assertTrue(ks.getKey("s2", "changeit".toCharArray())
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   422
                .getEncoded().length == 24,  "DESede is 168");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   423
        assertTrue(ks.getKey("s2", "changeit".toCharArray())
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   424
                .getAlgorithm().equalsIgnoreCase("DESede"), "s2 is DESede");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   425
        assertTrue(ks.getKey("s3", "changeit".toCharArray())
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   426
                .getAlgorithm().equalsIgnoreCase("AES"), "s3 is AES");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   427
        assertTrue(ks.getKey("s4", "changeit".toCharArray())
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   428
                .getAlgorithm().equalsIgnoreCase("DES"), "s4 is DES");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   429
        assertTrue(ks.getKey("s5", "keypass".toCharArray())
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   430
                .getAlgorithm().equalsIgnoreCase("DES"), "s5 is DES");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   431
        assertTrue(ks.getKey("s6", "keypass".toCharArray())
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   432
                .getAlgorithm().equalsIgnoreCase("DES"), "s6 is DES");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        assertTrue(!ks.containsAlias("s7"), "s7 not created");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        // maybe we needn't test this, one day JKS will support SecretKey
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   436
        //testFail("changeit\nchangeit\n", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   437
        //        "-genseckey -keyalg AES -alias s3 -keysize 128");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        // importKeyStore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        remove("x.jceks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   442
        // create 2 entries...
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   443
        testOK("changeit\nchangeit\n\n", "-keystore x.jceks -storetype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   444
                "-genkeypair -alias p1 -dname CN=Olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   445
        testOK("", "-keystore x.jceks -storetype JCEKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   446
                "-importcert -alias c1 -file x.jks.p1.cert -noprompt");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        ks = loadStore("x.jceks", "changeit", "JCEKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        assertTrue(ks.size() == 2, "2 entries in JCEKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   449
        // import, shouldn't mention destalias/srckeypass/destkeypass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   450
        // if srcalias is no given
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   451
        testFail("changeit\nchangeit\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   452
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   453
                "-destkeystore x.jks -deststoretype JKS -destalias pp");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   454
        testFail("changeit\nchangeit\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   455
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   456
                "-destkeystore x.jks -deststoretype JKS -srckeypass changeit");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   457
        testFail("changeit\nchangeit\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   458
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   459
                "-destkeystore x.jks -deststoretype JKS -destkeypass changeit");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        // normal import
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   461
        testOK("changeit\nchangeit\nchangeit\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   462
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   463
                "-destkeystore x.jks -deststoretype JKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        assertTrue(ks.size() == 2, "2 entries in JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        // import again, type yes to overwrite old entries
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   467
        testOK("changeit\nchangeit\ny\ny\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   468
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   469
                "-destkeystore x.jks -deststoretype JKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        // import again, specify -nopromt
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   472
        testOK("changeit\nchangeit\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   473
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   474
                "-destkeystore x.jks -deststoretype JKS -noprompt");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        assertTrue(err.indexOf("Warning") != -1, "noprompt will warn");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
        assertTrue(ks.size() == 2, "2 entries in JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
        // import again, type into new aliases when prompted
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   479
        testOK("changeit\nchangeit\n\ns1\n\ns2\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   480
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   481
                "-destkeystore x.jks -deststoretype JKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        assertTrue(ks.size() == 4, "4 entries in JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        // importkeystore single
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   486
        // normal
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   488
        testOK("changeit\nchangeit\nchangeit\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   489
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   490
                "-destkeystore x.jks -deststoretype JKS -srcalias p1");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        assertTrue(ks.size() == 1, "1 entries in JKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   493
        // overwrite
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   494
        testOK("changeit\nchangeit\ny\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   495
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   496
                "-destkeystore x.jks -deststoretype JKS -srcalias p1");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        assertTrue(ks.size() == 1, "1 entries in JKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   499
        // noprompt
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   500
        testOK("changeit\nchangeit\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   501
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   502
                "-destkeystore x.jks -deststoretype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   503
                "-srcalias p1 -noprompt");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        assertTrue(ks.size() == 1, "1 entries in JKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   506
        // rename
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   507
        testOK("changeit\nchangeit\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   508
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   509
                "-destkeystore x.jks -deststoretype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   510
                "-srcalias p1 -destalias p2");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        assertTrue(ks.size() == 2, "2 entries in JKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   513
        // another rename
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   514
        testOK("changeit\nchangeit\n\nnewalias\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   515
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   516
                "-destkeystore x.jks -deststoretype JKS -srcalias p1");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        assertTrue(ks.size() == 3, "3 entries in JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        // importkeystore single, different keypass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   522
        // generate entry with different keypass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   523
        testOK("changeit\nkeypass\nkeypass\n", "-keystore x.jceks " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   524
                "-storetype JCEKS -genkeypair -alias p2 -dname CN=Olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   525
        // prompt
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   526
        testOK("changeit\nchangeit\nchangeit\nkeypass\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   527
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   528
                "-destkeystore x.jks -deststoretype JKS -srcalias p2");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        assertTrue(ks.size() == 1, "1 entries in JKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   531
        // diff destkeypass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   532
        testOK("changeit\nchangeit\nkeypass\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   533
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   534
                "-destkeystore x.jks -deststoretype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   535
                "-srcalias p2 -destalias p3 -destkeypass keypass2");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        assertTrue(ks.size() == 2, "2 entries in JKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   538
        assertTrue(ks.getKey("p2", "keypass".toCharArray()) != null,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   539
                "p2 has old password");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   540
        assertTrue(ks.getKey("p3", "keypass2".toCharArray()) != null,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   541
                "p3 has new password");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        // importkeystore single, cert
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   545
        // normal
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   546
        testOK("changeit\nchangeit\nchangeit\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   547
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   548
                "-destkeystore x.jks -deststoretype JKS -srcalias c1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   549
        // in fact srcstorepass can be ignored
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   550
        testOK("changeit\n\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   551
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   552
                "-destkeystore x.jks -deststoretype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   553
                "-srcalias c1 -destalias c2");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        assertTrue(err.indexOf("WARNING") != -1, "But will warn");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   555
        // 2nd import, press y to overwrite ...
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   556
        testOK("changeit\n\ny\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   557
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   558
                "-destkeystore x.jks -deststoretype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   559
                "-srcalias c1 -destalias c2");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   560
        // ... or rename
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   561
        testOK("changeit\n\n\nc3\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   562
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   563
                "-destkeystore x.jks -deststoretype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   564
                "-srcalias c1 -destalias c2");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        ks = loadStore("x.jks", "changeit", "JKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   566
        // c1, c2, c3
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   567
        assertTrue(ks.size() == 3, "3 entries in JKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        // importkeystore, secretkey
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   571
        // create SecretKeyEntry
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   572
        testOK("changeit\n\n", "-keystore x.jceks -storetype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   573
                "-genseckey -alias s1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   574
        // create SecretKeyEntry
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   575
        testOK("changeit\n\n", "-keystore x.jceks -storetype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   576
                "-genseckey -alias s2");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   577
        // remove the keypass!=storepass one
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   578
        testOK("changeit\n", "-keystore x.jceks -storetype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   579
                "-delete -alias p2");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        ks = loadStore("x.jceks", "changeit", "JCEKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   581
        // p1, c1, s1, s2
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   582
        assertTrue(ks.size() == 4, "4 entries in JCEKS");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   583
        // normal
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   584
        testOK("changeit\nchangeit\nchangeit\n", "-importkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   585
                "-srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   586
                "-destkeystore x.jks -deststoretype JKS -srcalias s1");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        assertTrue(err.indexOf("not imported") != -1, "Not imported");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   588
        assertTrue(err.indexOf("Cannot store non-PrivateKeys") != -1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   589
                "Not imported");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   591
        // Importing a JCEKS keystore to a JKS one. Will warn
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   592
        // for the 2 SecretKey entries
12871
b583b4c82a82 7174351: test/sun/security/tools/keytool/standard.sh failed after new Hashtable
weijun
parents: 10138
diff changeset
   593
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        remove("x.jks");
12871
b583b4c82a82 7174351: test/sun/security/tools/keytool/standard.sh failed after new Hashtable
weijun
parents: 10138
diff changeset
   595
        // Two "no" answers to bypass warnings
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   596
        // normal
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   597
        testOK("\n\n", "-srcstorepass changeit -deststorepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   598
                "-importkeystore -srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   599
                "-destkeystore x.jks -deststoretype JKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
        assertTrue(err.indexOf("s1 not") != -1, "s1 not");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        assertTrue(err.indexOf("s2 not") != -1, "s2 not");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
        assertTrue(err.indexOf("c1 success") != -1, "c1 success");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
        assertTrue(err.indexOf("p1 success") != -1, "p1 success");
12871
b583b4c82a82 7174351: test/sun/security/tools/keytool/standard.sh failed after new Hashtable
weijun
parents: 10138
diff changeset
   604
        remove("x.jks");
b583b4c82a82 7174351: test/sun/security/tools/keytool/standard.sh failed after new Hashtable
weijun
parents: 10138
diff changeset
   605
        // One "yes" to stop
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   606
        // normal
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   607
        testOK("yes\n", "-srcstorepass changeit -deststorepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   608
                "-importkeystore -srckeystore x.jceks -srcstoretype JCEKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   609
                "-destkeystore x.jks -deststoretype JKS");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   610
        // maybe c1 or p1 has been imported before s1 or s2 is touched,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   611
        // anyway we know yesNo is only asked once.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        // pkcs12
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   615
        // JKS prompt for keypass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   616
        testFail("changeit\nchangeit\n", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   617
                "-genkeypair -alias p1 -dname CN=olala");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   619
        // just type ENTER means keypass=storepass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   620
        testOK("changeit\nchangeit\n\n", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   621
                "-genkeypair -alias p1 -dname CN=olala");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
        remove("x.p12");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   623
        // PKCS12 only need storepass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   624
        testOK("", "-keystore x.p12 -storetype PKCS12 -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   625
                "-genkeypair -alias p0 -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   626
        testOK("changeit\n", "-keystore x.p12 -storetype PKCS12 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   627
                "-genkeypair -alias p1 -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   628
        // when specify keypass, make sure keypass==storepass...
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   629
        testOK("changeit\n", "-keystore x.p12 -keypass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   630
                "-storetype PKCS12 -genkeypair -alias p3 -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   631
        assertTrue(err.indexOf("Warning") == -1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   632
                "PKCS12 silent when keypass == storepass");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   633
        // otherwise, print a warning
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   634
        testOK("changeit\n", "-keystore x.p12 -keypass another" +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   635
                " -storetype PKCS12 -genkeypair -alias p2 -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   636
        assertTrue(err.indexOf("Warning") != -1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   637
                "PKCS12 warning when keypass != storepass");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   638
        // no -keypasswd for PKCS12
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   639
        testFail("", "-keystore x.p12 -storepass changeit -storetype PKCS12" +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   640
                " -keypasswd -new changeit -alias p3");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   641
        testOK("", "-keystore x.p12 -storepass changeit -storetype PKCS12 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   642
                "-changealias -alias p3 -destalias p33");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   643
        testOK("", "-keystore x.p12 -storepass changeit -storetype PKCS12 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   644
                "-keyclone -alias p33 -destalias p3");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        // pkcs12
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        remove("x.p12");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   648
        // PKCS12 only need storepass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   649
        testOK("", "-keystore x.p12 -storetype PKCS12 -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   650
                "-genkeypair -alias p0 -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   651
        testOK("", "-storepass changeit -keystore x.p12 -storetype PKCS12 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   652
                "-genkeypair -alias p1 -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   653
        // when specify keypass, make sure keypass==storepass...
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   654
        testOK("", "-storepass changeit -keystore x.p12 -keypass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   655
                "-storetype PKCS12 -genkeypair -alias p3 -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   656
        assertTrue(err.indexOf("Warning") == -1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   657
                "PKCS12 silent when keypass == storepass");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   658
        // otherwise, print a warning
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   659
        testOK("", "-storepass changeit -keystore x.p12 -keypass another " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   660
                "-storetype PKCS12 -genkeypair -alias p2 -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   661
        assertTrue(err.indexOf("Warning") != -1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   662
                "PKCS12 warning when keypass != storepass");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        remove("x.jceks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
        remove("x.p12");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
        remove("x2.jceks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        remove("x2.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        remove("x.jks.p1.cert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    void testPKCS11() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        KeyStore ks;
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   674
        // pkcs11, the password maybe different and maybe PKCS11 not supported
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
        // in case last test is not executed successfully
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        testAnyway("", p11Arg + "-storepass test12 -delete -alias p1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        testAnyway("", p11Arg + "-storepass test12 -delete -alias p2");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        testAnyway("", p11Arg + "-storepass test12 -delete -alias p3");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        testAnyway("", p11Arg + "-storepass test12 -delete -alias nss");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
        testOK("", p11Arg + "-storepass test12 -list");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   683
        assertTrue(out.indexOf("Your keystore contains 0 entries") != -1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   684
                "*** MAKE SURE YOU HAVE NO ENTRIES IN YOUR PKCS11 KEYSTORE " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   685
                        "BEFORE THIS TEST ***");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   687
        testOK("", p11Arg +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   688
                "-storepass test12 -genkeypair -alias p1 -dname CN=olala");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
        testOK("test12\n", p11Arg + "-genkeypair -alias p2 -dname CN=olala2");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   690
        // cannot provide keypass for PKCS11
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   691
        testFail("test12\n", p11Arg +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   692
                "-keypass test12 -genkeypair -alias p3 -dname CN=olala3");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   693
        // cannot provide keypass for PKCS11
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   694
        testFail("test12\n", p11Arg +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   695
                "-keypass nonsense -genkeypair -alias p3 -dname CN=olala3");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
        testOK("", p11Arg + "-storepass test12 -list");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   698
        assertTrue(out.indexOf("Your keystore contains 2 entries") != -1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   699
                "2 entries in p11");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
        testOK("test12\n", p11Arg + "-alias p1 -changealias -destalias p3");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
        testOK("", p11Arg + "-storepass test12 -list -alias p3");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
        testFail("", p11Arg + "-storepass test12 -list -alias p1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
        testOK("test12\n", p11Arg + "-alias p3 -keyclone -destalias p1");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   706
        // in PKCS11, keyclone will delete old
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   707
        testFail("", p11Arg + "-storepass test12 -list -alias p3");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
        testOK("", p11Arg + "-storepass test12 -list -alias p1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   710
        // cannot change password for PKCS11
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   711
        testFail("test12\n", p11Arg + "-alias p1 -keypasswd -new another");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
        testOK("", p11Arg + "-storepass test12 -list");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   714
        assertTrue(out.indexOf("Your keystore contains 2 entries") != -1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   715
                "2 entries in p11");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
        testOK("", p11Arg + "-storepass test12 -delete -alias p1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        testOK("", p11Arg + "-storepass test12 -delete -alias p2");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        testOK("", p11Arg + "-storepass test12 -list");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   721
        assertTrue(out.indexOf("Your keystore contains 0 entries") != -1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   722
                "*** MAKE SURE YOU HAVE NO ENTRIES IN YOUR PKCS11 KEYSTORE" +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   723
                        " BEFORE THIS TEST ***");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
    void testPKCS11ImportKeyStore() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
        KeyStore ks;
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   729
        testOK("", p11Arg +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   730
                "-storepass test12 -genkeypair -alias p1 -dname CN=olala");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
        testOK("test12\n", p11Arg + "-genkeypair -alias p2 -dname CN=olala2");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
        // test importkeystore for pkcs11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
        // pkcs11 -> jks
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   736
        testOK("changeit\nchangeit\ntest12\n", srcP11Arg +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   737
                ("-importkeystore -destkeystore x.jks -deststoretype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   738
                "-srcalias p1"));
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   739
        assertTrue(err.indexOf("not imported") != -1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   740
                "cannot import key without destkeypass");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
        assertTrue(!ks.containsAlias("p1"), "p1 is not imported");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   744
        testOK("changeit\ntest12\n", srcP11Arg +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   745
                ("-importkeystore -destkeystore x.jks -deststoretype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   746
                "-srcalias p1 -destkeypass changeit"));
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   747
        testOK("changeit\ntest12\n", srcP11Arg +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   748
                ("-importkeystore -destkeystore x.jks -deststoretype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   749
                "-srcalias p2 -destkeypass changeit"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
        assertTrue(ks.containsAlias("p1"), "p1 is imported");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
        assertTrue(ks.containsAlias("p2"), "p2 is imported");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        // jks -> pkcs11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        testOK("", p11Arg + "-storepass test12 -delete -alias p1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
        testOK("", p11Arg + "-storepass test12 -delete -alias p2");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   756
        testOK("test12\nchangeit\n", p11Arg +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   757
                "-importkeystore -srckeystore x.jks -srcstoretype JKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
        testOK("", p11Arg + "-storepass test12 -list -alias p1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
        testOK("", p11Arg + "-storepass test12 -list -alias p2");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
        testOK("", p11Arg + "-storepass test12 -list");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   761
        assertTrue(out.indexOf("Your keystore contains 2 entries") != -1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   762
                "2 entries in p11");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        // clean up
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
        testOK("", p11Arg + "-storepass test12 -delete -alias p1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        testOK("", p11Arg + "-storepass test12 -delete -alias p2");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
        testOK("", p11Arg + "-storepass test12 -list");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   767
        assertTrue(out.indexOf("Your keystore contains 0 entries") != -1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   768
                "empty p11");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   773
    // Selected sqeTest
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
    void sqeTest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
        FileOutputStream fos = new FileOutputStream("badkeystore");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
        for (int i=0; i<100; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
            fos.write(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        fos.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        sqeCsrTest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
        sqePrintcertTest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        sqeDeleteTest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
        sqeExportTest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
        sqeGenkeyTest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        sqeImportTest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        sqeKeyclonetest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
        sqeKeypasswdTest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
        sqeListTest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
        sqeSelfCertTest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
        sqeStorepassTest();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
        remove("badkeystore");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
    // Import: cacert, prompt, trusted, non-trusted, bad chain, not match
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    void sqeImportTest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        KeyStore ks;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   800
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   801
                "-keypass changeit -genkeypair -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   802
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   803
                "-exportcert -file x.jks.p1.cert");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   804
        /* deleted */ testOK("", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   805
                "-storepass changeit -delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   806
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   807
                "-importcert -file x.jks.p1.cert -noprompt");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   808
        /* deleted */ testOK("", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   809
                "-storepass changeit -delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   810
        testOK("yes\n", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   811
                "-importcert -file x.jks.p1.cert");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
        assertTrue(ks.containsAlias("mykey"), "imported");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   814
        /* deleted */ testOK("", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   815
                "-storepass changeit -delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   816
        testOK("\n", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   817
                "-importcert -file x.jks.p1.cert");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
        assertTrue(!ks.containsAlias("mykey"), "imported");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   820
        testOK("no\n", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   821
                "-importcert -file x.jks.p1.cert");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
        ks = loadStore("x.jks", "changeit", "JKS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
        assertTrue(!ks.containsAlias("mykey"), "imported");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   824
        testFail("no\n", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   825
                "-importcert -file nonexist");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   826
        testFail("no\n", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   827
                "-importcert -file x.jks");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
    // keyclone: exist. nonexist err, cert err, dest exist, misc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
    void sqeKeyclonetest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   833
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   834
                "-keypass changeit -genkeypair -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   835
        // new pass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   836
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   837
                "-keypass changeit -new newpass -keyclone -dest p0");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   838
        // new pass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   839
        testOK("\n", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   840
                "-keypass changeit -keyclone -dest p1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   841
        testOK("\n", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   842
                "-keyclone -dest p2");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   843
        testFail("\n", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   844
                "-keyclone -dest p2");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   845
        testFail("\n", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   846
                "-keyclone -dest p3 -alias noexist");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
        // no cert
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   848
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   849
                "-exportcert -file x.jks.p1.cert");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   850
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   851
                "-delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   852
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   853
                "-importcert -file x.jks.p1.cert -noprompt");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   854
        // new pass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   855
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   856
                "-keypass changeit -new newpass -keyclone -dest p0");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
    // keypasswd: exist, short, nonexist err, cert err, misc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
    void sqeKeypasswdTest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   862
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   863
                "-keypass changeit -genkeypair -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   864
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   865
                "-keypass changeit -keypasswd -new newpass");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   866
        /*change back*/ testOK("", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   867
                "-storepass changeit -keypass newpass -keypasswd -new changeit");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   868
        testOK("newpass\nnewpass\n", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   869
                "-storepass changeit -keypass changeit -keypasswd");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   870
        /*change back*/ testOK("", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   871
                "-storepass changeit -keypass newpass -keypasswd -new changeit");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   872
        testOK("new\nnew\nnewpass\nnewpass\n", "-keystore x.jks " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   873
                "-storetype JKS -storepass changeit -keypass changeit -keypasswd");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   874
        /*change back*/ testOK("", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   875
                "-storepass changeit -keypass newpass -keypasswd -new changeit");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   876
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   877
                "-keypasswd -new newpass");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   878
        /*change back*/ testOK("", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   879
                "-storepass changeit -keypass newpass -keypasswd -new changeit");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   880
        testOK("changeit\n", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   881
                "-keypasswd -new newpass");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   882
        /*change back*/ testOK("", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   883
                "-storepass changeit -keypass newpass -keypasswd -new changeit");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   884
        testFail("", "-keystore x.jks -storetype JKS -storepass badpass " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   885
                "-keypass changeit -keypasswd -new newpass");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   886
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   887
                "-keypass bad -keypasswd -new newpass");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
        // no cert
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   889
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   890
                "-exportcert -file x.jks.p1.cert");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   891
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   892
                "-delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   893
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   894
                "-importcert -file x.jks.p1.cert -noprompt");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   895
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   896
                "-keypass changeit -keypasswd -new newpass");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
        // diff pass
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   898
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   899
                "-delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   900
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   901
                "-keypass keypass -genkeypair -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   902
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   903
                "-keypasswd -new newpass");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   904
        testOK("keypass\n", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   905
                "-storepass changeit -keypasswd -new newpass");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
        // i hate those misc test
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
    }
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   909
    // list: -f -alias, exist, nonexist err;
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   910
    // otherwise, check all shows, -rfc shows more, and misc
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
    void sqeListTest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   913
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   914
                "-keypass changeit -genkeypair -dname CN=olala");
28243
47080f9ae750 8044445: JEP 229: Create PKCS12 Keystores by Default
vinnie
parents: 27344
diff changeset
   915
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit -list");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   916
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   917
                "-list -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   918
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   919
                "-list -alias notexist");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   920
        testFail("", "-keystore x.jks -storetype JKS -storepass badpass " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   921
                "-list -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   922
        // keypass ignore
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   923
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   924
                "-keypass badpass -list -alias mykey");
28243
47080f9ae750 8044445: JEP 229: Create PKCS12 Keystores by Default
vinnie
parents: 27344
diff changeset
   925
        testOK("\n", "-keystore x.jks -storetype JKS -list");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
        assertTrue(err.indexOf("WARNING") != -1, "no storepass");
28243
47080f9ae750 8044445: JEP 229: Create PKCS12 Keystores by Default
vinnie
parents: 27344
diff changeset
   927
        testOK("changeit\n", "-keystore x.jks -storetype JKS -list");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
        assertTrue(err.indexOf("WARNING") == -1, "has storepass");
28243
47080f9ae750 8044445: JEP 229: Create PKCS12 Keystores by Default
vinnie
parents: 27344
diff changeset
   929
        testFail("badpass\n", "-keystore x.jks -storetype JKS -list");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
        // misc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
        testFail("", "-keystore aa\\bb//cc -storepass changeit -list");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
        testFail("", "-keystore nonexisting -storepass changeit -list");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
        testFail("", "-keystore badkeystore -storepass changeit -list");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
    }
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   936
    // selfcert: exist, non-exist err, cert err, sig, dname, wrong keypass, misc
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
    void sqeSelfCertTest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   939
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   940
                "-keypass changeit -genkeypair -dname CN=olala");
28243
47080f9ae750 8044445: JEP 229: Create PKCS12 Keystores by Default
vinnie
parents: 27344
diff changeset
   941
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit -selfcert");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   942
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   943
                "-keypass changeit -selfcert");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   944
        // not exist
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   945
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   946
                "-keypass changeit -selfcert -alias nonexisting");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   947
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   948
                "-keypass changeit -selfcert -dname CN=NewName");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   949
        // sig not compatible
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   950
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   951
                "-keypass changeit -selfcert -sigalg MD5withRSA");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   952
        // bad pass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   953
        testFail("", "-keystore x.jks -storetype JKS -storepass wrong " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   954
                "-keypass changeit -selfcert");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   955
        // bad pass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   956
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   957
                "-keypass wrong -selfcert");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
        //misc
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   959
        testFail("", "-keystore nonexist -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   960
                "-keypass changeit -selfcert");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   961
        testFail("", "-keystore aa//dd\\gg -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   962
                "-keypass changeit -selfcert");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
        // diff pass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   965
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   966
                "-keypass keypass -genkeypair -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   967
        testFail("", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   968
                "-storepass changeit -selfcert");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   969
        testOK("keypass\n", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   970
                "-storepass changeit -selfcert");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   972
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   973
                "-exportcert -file x.jks.p1.cert");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   974
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   975
                "-delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   976
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   977
                "-importcert -file x.jks.p1.cert -noprompt");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   978
        // certentry cannot do selfcert
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   979
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   980
                "-selfcert");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
    // storepass: bad old, short new, misc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
    void sqeStorepassTest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   986
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   987
                "-keypass changeit -genkeypair -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   988
        // all in arg
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   989
        testOK("", "-storepasswd -keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   990
                "-storepass changeit -new newstore");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   991
        /* Change back */ testOK("", "-storepasswd -keystore x.jks" +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   992
                " -storetype JKS -storepass newstore -new changeit");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   993
        // all not in arg, new twice
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   994
        testOK("changeit\nnewstore\nnewstore\n", "-storepasswd " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   995
                "-keystore x.jks -storetype JKS");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   996
        /* Change back */ testOK("", "-storepasswd -keystore x.jks " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   997
                "-storetype JKS -storepass newstore -new changeit");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   998
        // new in arg
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
   999
        testOK("changeit\n", "-storepasswd -keystore x.jks " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1000
                "-storetype JKS -new newstore");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1001
        /* Change back */ testOK("", "-storepasswd -keystore x.jks " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1002
                "-storetype JKS -storepass newstore -new changeit");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1003
        // old in arg
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1004
        testOK("newstore\nnewstore\n", "-storepasswd -keystore x.jks " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1005
                "-storetype JKS -storepass changeit");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1006
        /* Change back */ testOK("", "-storepasswd -keystore x.jks " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1007
                "-storetype JKS -storepass newstore -new changeit");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1008
        // old in arg
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1009
        testOK("new\nnew\nnewstore\nnewstore\n", "-storepasswd " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1010
                "-keystore x.jks -storetype JKS -storepass changeit");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1011
        /* Change back */ testOK("", "-storepasswd -keystore x.jks " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1012
                "-storetype JKS -storepass newstore -new changeit");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1013
        // bad old
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1014
        testFail("", "-storepasswd -keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1015
                "-storepass badold -new newstore");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1016
        // short new
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1017
        testFail("", "-storepasswd -keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1018
                "-storepass changeit -new new");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
        // misc
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1020
        // non exist
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1021
        testFail("", "-storepasswd -keystore nonexist " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1022
                "-storepass changeit -new newstore");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1023
        // bad file
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1024
        testFail("", "-storepasswd -keystore badkeystore " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1025
                "-storepass changeit -new newstore");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1026
        // bad file
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1027
        testFail("", "-storepasswd -keystore aa\\bb//cc//dd " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1028
                "-storepass changeit -new newstore");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
    void sqeGenkeyTest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1035
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1036
                "-keypass changeit -genkeypair -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1037
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1038
                "-keypass changeit -genkeypair -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1039
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1040
                "-keypass changeit -genkeypair -dname CN=olala -alias newentry");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1041
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1042
                "-keypass changeit -genkeypair -dname CN=olala -alias newentry");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1043
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1044
                "-keypass changeit -genkeypair -dname CN=olala -keyalg DSA " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1045
                "-alias n1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1046
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1047
                "-keypass changeit -genkeypair -dname CN=olala -keyalg RSA " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1048
                "-alias n2");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1049
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1050
                "-keypass changeit -genkeypair -dname CN=olala " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1051
                "-keyalg NoSuchAlg -alias n3");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1052
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1053
                "-keypass changeit -genkeypair -dname CN=olala -keysize 56 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1054
                "-alias n4");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1055
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1056
                "-keypass changeit -genkeypair -dname CN=olala -keysize 999 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1057
                "-alias n5");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1058
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1059
                "-keypass changeit -genkeypair -dname CN=olala -keysize 512 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1060
                "-alias n6");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1061
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1062
                "-keypass changeit -genkeypair -dname CN=olala -keysize 1024 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1063
                "-alias n7");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1064
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1065
                "-keypass changeit -genkeypair -dname CN=olala " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1066
                "-sigalg NoSuchAlg -alias n8");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1067
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1068
                "-keypass changeit -genkeypair -dname CN=olala -keyalg RSA " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1069
                "-sigalg MD2withRSA -alias n9");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1070
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1071
                "-keypass changeit -genkeypair -dname CN=olala -keyalg RSA " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1072
                "-sigalg MD5withRSA -alias n10");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1073
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1074
                "-keypass changeit -genkeypair -dname CN=olala -keyalg RSA " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1075
                "-sigalg SHA1withRSA -alias n11");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1076
        testFail("", "-keystore aa\\bb//cc\\dd -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1077
                "-keypass changeit -genkeypair -dname CN=olala -keyalg RSA " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1078
                "-sigalg NoSuchAlg -alias n12");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1079
        testFail("", "-keystore badkeystore -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1080
                "-keypass changeit -genkeypair -dname CN=olala " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1081
                "-alias n14");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1082
        testFail("", "-keystore x.jks -storetype JKS -storepass badpass " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1083
                "-keypass changeit -genkeypair -dname CN=olala -alias n16");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1084
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1085
                "-keypass changeit -genkeypair -dname CNN=olala -alias n17");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
    void sqeExportTest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1091
        // nonexist
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1092
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1093
                "-export -file mykey.cert -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1094
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1095
                "-keypass changeit -genkeypair -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1096
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1097
                "-export -file mykey.cert -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1098
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1099
                "-delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1100
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1101
                "-import -file mykey.cert -noprompt -alias c1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1102
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1103
                "-export -file mykey.cert2 -alias c1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1104
        testFail("", "-keystore aa\\bb//cc\\dd -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1105
                "-export -file mykey.cert2 -alias c1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1106
        testFail("", "-keystore nonexistkeystore -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1107
                "-export -file mykey.cert2 -alias c1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1108
        testFail("", "-keystore badkeystore -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1109
                "-export -file mykey.cert2 -alias c1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1110
        testFail("", "-keystore x.jks -storetype JKS -storepass badpass " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1111
                "-export -file mykey.cert2 -alias c1");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
        remove("mykey.cert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
        remove("mykey.cert2");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
    void sqeDeleteTest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1119
        // nonexist
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1120
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1121
                "-delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1122
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1123
                "-keypass changeit -genkeypair -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1124
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1125
                "-delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1126
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1127
                "-keypass changeit -genkeypair -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1128
        // keystore name illegal
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1129
        testFail("", "-keystore aa\\bb//cc\\dd -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1130
                "-delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1131
        // keystore not exist
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1132
        testFail("", "-keystore nonexistkeystore -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1133
                "-delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1134
        // keystore invalid
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1135
        testFail("", "-keystore badkeystore -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1136
                "-delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1137
        // wrong pass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1138
        testFail("", "-keystore x.jks -storetype JKS -storepass xxxxxxxx " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1139
                "-delete -alias mykey");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
    void sqeCsrTest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
        remove("x.jks.p1.cert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
        remove("csr1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
        // PrivateKeyEntry can do certreq
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1148
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1149
                "-keypass changeit -genkeypair -dname CN=olala -keysize 1024");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1150
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1151
                "-certreq -file csr1 -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1152
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1153
                "-certreq -file csr1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1154
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1155
                "-certreq -file csr1 -sigalg SHA1withDSA");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1156
        // unmatched sigalg
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1157
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1158
                "-certreq -file csr1 -sigalg MD5withRSA");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
        // misc test
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1160
        // bad storepass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1161
        testFail("", "-keystore x.jks -storetype JKS -storepass badstorepass " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1162
                "-certreq -file csr1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1163
        // storepass from terminal
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1164
        testOK("changeit\n", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1165
                "-certreq -file csr1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1166
        // must provide storepass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1167
        testFail("\n", "-keystore x.jks -storetype JKS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1168
                "-certreq -file csr1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1169
        // bad keypass
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1170
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1171
                "-keypass badkeypass -certreq -file csr1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1172
        // bad filepath
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1173
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1174
                "-certreq -file aa\\bb//cc\\dd");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1175
        // non-existing keystore
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1176
        testFail("", "-keystore noexistks -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1177
                "-certreq -file csr1");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
        // Try the RSA private key
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1179
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1180
                "-delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1181
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1182
                "-keypass changeit -genkeypair -dname CN=olala -keyalg RSA");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1183
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1184
                "-certreq -file csr1 -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1185
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1186
                "-certreq -file csr1");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1187
        // unmatched sigalg
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1188
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1189
                "-certreq -file csr1 -sigalg SHA1withDSA");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1190
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1191
                "-certreq -file csr1 -sigalg MD5withRSA");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
        // TrustedCertificateEntry cannot do certreq
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1193
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1194
                "-exportcert -file x.jks.p1.cert");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1195
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1196
                "-delete -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1197
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1198
                "-importcert -file x.jks.p1.cert -noprompt");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1199
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1200
                "-certreq -file csr1 -alias mykey");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1201
        testFail("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1202
                "-certreq -file csr1");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
        remove("x.jks.p1.cert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
        remove("csr1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
    void sqePrintcertTest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
        remove("mykey.cert");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1211
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1212
                "-keypass changeit -genkeypair -dname CN=olala");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1213
        testOK("", "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1214
                "-export -file mykey.cert -alias mykey");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
        testFail("", "-printcert -file badkeystore");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
        testFail("", "-printcert -file a/b/c/d");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
        testOK("", "-printcert -file mykey.cert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
        FileInputStream fin = new FileInputStream("mykey.cert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
        testOK(fin, "-printcert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
        fin.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
        remove("mykey.cert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1225
    void v3extTest(String keyAlg) throws Exception {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1226
        KeyStore ks;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1227
        remove("x.jks");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1228
        String simple = "-keystore x.jks -storetype JKS -storepass changeit " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1229
                "-keypass changeit -noprompt -keyalg " + keyAlg + " ";
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1230
        String pre = simple + "-genkeypair -dname CN=Olala -alias ";
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1231
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1232
        // Version and SKID
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1233
        testOK("", pre + "o1");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1234
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1235
        ks = loadStore("x.jks", "changeit", "JKS");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1236
        assertTrue(((X509Certificate)ks.getCertificate("o1")).getVersion() == 3);
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1237
        assertTrue(((X509CertImpl)ks.getCertificate("o1"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1238
                .getSubjectKeyIdentifierExtension() != null);
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1239
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1240
        // BC
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1241
        testOK("", pre + "b1 -ext BC:critical");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1242
        testOK("", pre + "b2 -ext BC");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1243
        testOK("", pre + "b3 -ext bc");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1244
        testOK("", pre + "b4 -ext BasicConstraints");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1245
        testOK("", pre + "b5 -ext basicconstraints");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1246
        testOK("", pre + "b6 -ext BC=ca:true,pathlen:12");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1247
        testOK("", pre + "b7 -ext BC=ca:false");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1248
        testOK("", pre + "b8 -ext BC:critical=ca:false");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1249
        testOK("", pre + "b9 -ext BC=12");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1250
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1251
        ks = loadStore("x.jks", "changeit", "JKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1252
        assertTrue(((X509CertImpl)ks.getCertificate("b1"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1253
                .getBasicConstraintsExtension().isCritical());
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1254
        assertTrue(!((X509CertImpl)ks.getCertificate("b2"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1255
                .getBasicConstraintsExtension().isCritical());
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1256
        assertTrue(((X509CertImpl)ks.getCertificate("b8"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1257
                .getBasicConstraintsExtension().isCritical());
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1258
        assertTrue(((X509Certificate)ks.getCertificate("b1"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1259
                .getBasicConstraints() == Integer.MAX_VALUE);
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1260
        assertTrue(((X509Certificate)ks.getCertificate("b2"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1261
                .getBasicConstraints() == Integer.MAX_VALUE);
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1262
        assertTrue(((X509Certificate)ks.getCertificate("b3"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1263
                .getBasicConstraints() == Integer.MAX_VALUE);
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1264
        assertTrue(((X509Certificate)ks.getCertificate("b4"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1265
                .getBasicConstraints() == Integer.MAX_VALUE);
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1266
        assertTrue(((X509Certificate)ks.getCertificate("b5"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1267
                .getBasicConstraints() == Integer.MAX_VALUE);
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1268
        assertTrue(((X509Certificate)ks.getCertificate("b6"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1269
                .getBasicConstraints() == 12);
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1270
        assertTrue(((X509Certificate)ks.getCertificate("b7"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1271
                .getBasicConstraints() == -1);
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1272
        assertTrue(((X509Certificate)ks.getCertificate("b9"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1273
                .getBasicConstraints() == 12);
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1274
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1275
        // KU
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1276
        testOK("", pre + "ku1 -ext KeyUsage:critical=digitalsignature");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1277
        testOK("", pre + "ku2 -ext KU=digitalSignature");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1278
        testOK("", pre + "ku3 -ext KU=ds");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1279
        testOK("", pre + "ku4 -ext KU=dig");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1280
        // ambigous value
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1281
        testFail("", pre + "ku5 -ext KU=d");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1282
        // cRLSign cannot be cs
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1283
        testFail("", pre + "ku6 -ext KU=cs");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1284
        testOK("", pre + "ku11 -ext KU=nr");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1285
        // ke also means keyAgreement
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1286
        testFail("", pre + "ku12 -ext KU=ke");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1287
        testOK("", pre + "ku12 -ext KU=keyE");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1288
        // de also means decipherOnly
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1289
        testFail("", pre + "ku13 -ext KU=de");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1290
        testOK("", pre + "ku13 -ext KU=dataE");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1291
        testOK("", pre + "ku14 -ext KU=ka");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1292
        testOK("", pre + "ku15 -ext KU=kcs");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1293
        testOK("", pre + "ku16 -ext KU=crls");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1294
        testOK("", pre + "ku17 -ext KU=eo");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1295
        testOK("", pre + "ku18 -ext KU=do");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1296
        testOK("", pre + "ku19 -ext KU=cc");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1297
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1298
        testOK("", pre + "ku017 -ext KU=ds,cc,eo");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1299
        testOK("", pre + "ku135 -ext KU=nr,dataEncipherment,keyCertSign");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1300
        testOK("", pre + "ku246 -ext KU=keyEnc,cRL,keyA");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1301
        testOK("", pre + "ku1234 -ext KU=ka,da,keyE,nonR");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1302
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1303
        ks = loadStore("x.jks", "changeit", "JKS");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1304
        class CheckKU {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1305
            void check(KeyStore ks, String alias, int... pos) throws Exception {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1306
                System.err.print("x");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1307
                boolean[] bs = ((X509Certificate)ks.getCertificate(alias))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1308
                        .getKeyUsage();
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1309
                bs = Arrays.copyOf(bs, 9);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1310
                for (int i=0; i<bs.length; i++) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1311
                    boolean found = false;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1312
                    for (int p: pos) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1313
                        if (p == i) found = true;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1314
                    }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1315
                    if (!found ^ bs[i]) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1316
                        // OK
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1317
                    } else {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1318
                        throw new RuntimeException("KU not match at " + i +
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1319
                                ": " + found + " vs " + bs[i]);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1320
                    }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1321
                }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1322
            }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1323
        }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1324
        CheckKU c = new CheckKU();
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1325
        assertTrue(((X509CertImpl)ks.getCertificate("ku1"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1326
                .getExtension(PKIXExtensions.KeyUsage_Id).isCritical());
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1327
        assertTrue(!((X509CertImpl)ks.getCertificate("ku2"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1328
                .getExtension(PKIXExtensions.KeyUsage_Id).isCritical());
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1329
        c.check(ks, "ku1", 0);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1330
        c.check(ks, "ku2", 0);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1331
        c.check(ks, "ku3", 0);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1332
        c.check(ks, "ku4", 0);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1333
        c.check(ks, "ku11", 1);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1334
        c.check(ks, "ku12", 2);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1335
        c.check(ks, "ku13", 3);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1336
        c.check(ks, "ku14", 4);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1337
        c.check(ks, "ku15", 5);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1338
        c.check(ks, "ku16", 6);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1339
        c.check(ks, "ku17", 7);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1340
        c.check(ks, "ku18", 8);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1341
        c.check(ks, "ku19", 1);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1342
        c.check(ks, "ku11", 1);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1343
        c.check(ks, "ku11", 1);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1344
        c.check(ks, "ku11", 1);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1345
        c.check(ks, "ku017", 0, 1, 7);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1346
        c.check(ks, "ku135", 1, 3, 5);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1347
        c.check(ks, "ku246", 6, 2, 4);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1348
        c.check(ks, "ku1234", 1, 2, 3, 4);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1349
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1350
        // EKU
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1351
        testOK("", pre + "eku1 -ext EKU:critical=sa");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1352
        testOK("", pre + "eku2 -ext ExtendedKeyUsage=ca");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1353
        testOK("", pre + "eku3 -ext EKU=cs");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1354
        testOK("", pre + "eku4 -ext EKU=ep");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1355
        testOK("", pre + "eku8 -ext EKU=ts");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1356
        testFail("", pre + "eku9 -ext EKU=os");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1357
        testOK("", pre + "eku9 -ext EKU=ocsps");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1358
        testOK("", pre + "eku10 -ext EKU=any");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1359
        testOK("", pre + "eku11 -ext EKU=1.2.3.4,1.3.5.7,ep");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1360
        testFail("", pre + "eku12 -ext EKU=c");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1361
        testFail("", pre + "eku12 -ext EKU=nothing");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1362
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1363
        ks = loadStore("x.jks", "changeit", "JKS");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1364
        class CheckEKU {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1365
            void check(KeyStore ks, String alias, String... pos) throws Exception {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1366
                System.err.print("x");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1367
                List<String> bs = ((X509Certificate)ks.getCertificate(alias))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1368
                        .getExtendedKeyUsage();
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1369
                int found = 0;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1370
                for (String p: pos) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1371
                    if (bs.contains(p)) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1372
                        found++;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1373
                    } else {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1374
                        throw new RuntimeException("EKU: not included " + p);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1375
                    }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1376
                }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1377
                if (found != bs.size()) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1378
                    throw new RuntimeException("EKU: more items than expected");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1379
                }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1380
            }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1381
        }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1382
        CheckEKU cx = new CheckEKU();
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1383
        assertTrue(((X509CertImpl)ks.getCertificate("eku1"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1384
                .getExtension(PKIXExtensions.ExtendedKeyUsage_Id).isCritical());
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1385
        assertTrue(!((X509CertImpl)ks.getCertificate("eku2"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1386
                .getExtension(PKIXExtensions.ExtendedKeyUsage_Id).isCritical());
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1387
        cx.check(ks, "eku1", "1.3.6.1.5.5.7.3.1");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1388
        cx.check(ks, "eku2", "1.3.6.1.5.5.7.3.2");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1389
        cx.check(ks, "eku3", "1.3.6.1.5.5.7.3.3");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1390
        cx.check(ks, "eku4", "1.3.6.1.5.5.7.3.4");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1391
        cx.check(ks, "eku8", "1.3.6.1.5.5.7.3.8");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1392
        cx.check(ks, "eku9", "1.3.6.1.5.5.7.3.9");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1393
        cx.check(ks, "eku10", "2.5.29.37.0");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1394
        cx.check(ks, "eku11", "1.3.6.1.5.5.7.3.4", "1.2.3.4", "1.3.5.7");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1395
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1396
        // SAN
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1397
        testOK("", pre+"san1 -ext san:critical=email:me@me.org");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1398
        testOK("", pre+"san2 -ext san=uri:http://me.org");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1399
        testOK("", pre+"san3 -ext san=dns:me.org");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1400
        testOK("", pre+"san4 -ext san=ip:192.168.0.1");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1401
        testOK("", pre+"san5 -ext san=oid:1.2.3.4");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1402
        testOK("", pre+"san235 -ext san=uri:http://me.org,dns:me.org,oid:1.2.3.4");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1403
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1404
        ks = loadStore("x.jks", "changeit", "JKS");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1405
        class CheckSAN {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1406
            // Please sort items with name type
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1407
            void check(KeyStore ks, String alias, int type, Object... items)
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1408
                    throws Exception {
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1409
                int pos = 0;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1410
                System.err.print("x");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1411
                Object[] names = null;
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1412
                if (type == 0) names = ((X509Certificate)ks.getCertificate(alias))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1413
                        .getSubjectAlternativeNames().toArray();
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1414
                else names = ((X509Certificate)ks.getCertificate(alias))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1415
                        .getIssuerAlternativeNames().toArray();
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1416
                Arrays.sort(names, new Comparator() {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1417
                    public int compare(Object o1, Object o2) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1418
                        int i1 = (Integer)((List)o1).get(0);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1419
                        int i2 = (Integer)((List)o2).get(0);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1420
                        return i1 - i2;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1421
                    }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1422
                });
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1423
                for (Object o: names) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1424
                    List l = (List)o;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1425
                    for (Object o2: l) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1426
                        if (!items[pos++].equals(o2)) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1427
                            throw new RuntimeException("Not equals at " + pos
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1428
                                    + ": " + items[pos-1] + " vs " + o2);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1429
                        }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1430
                    }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1431
                }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1432
                if (pos != items.length) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1433
                    throw new RuntimeException("Extra items, pos is " + pos);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1434
                }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1435
            }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1436
        }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1437
        CheckSAN csan = new CheckSAN();
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1438
        assertTrue(((X509CertImpl)ks.getCertificate("san1"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1439
                .getSubjectAlternativeNameExtension().isCritical());
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1440
        assertTrue(!((X509CertImpl)ks.getCertificate("san2"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1441
                .getSubjectAlternativeNameExtension().isCritical());
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1442
        csan.check(ks, "san1", 0, 1, "me@me.org");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1443
        csan.check(ks, "san2", 0, 6, "http://me.org");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1444
        csan.check(ks, "san3", 0, 2, "me.org");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1445
        csan.check(ks, "san4", 0, 7, "192.168.0.1");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1446
        csan.check(ks, "san5", 0, 8, "1.2.3.4");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1447
        csan.check(ks, "san235", 0, 2, "me.org", 6, "http://me.org", 8, "1.2.3.4");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1448
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1449
        // IAN
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1450
        testOK("", pre+"ian1 -ext ian:critical=email:me@me.org");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1451
        testOK("", pre+"ian2 -ext ian=uri:http://me.org");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1452
        testOK("", pre+"ian3 -ext ian=dns:me.org");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1453
        testOK("", pre+"ian4 -ext ian=ip:192.168.0.1");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1454
        testOK("", pre+"ian5 -ext ian=oid:1.2.3.4");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1455
        testOK("", pre+"ian235 -ext ian=uri:http://me.org,dns:me.org,oid:1.2.3.4");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1456
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1457
        ks = loadStore("x.jks", "changeit", "JKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1458
        assertTrue(((X509CertImpl)ks.getCertificate("ian1"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1459
                .getIssuerAlternativeNameExtension().isCritical());
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1460
        assertTrue(!((X509CertImpl)ks.getCertificate("ian2"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1461
                .getIssuerAlternativeNameExtension().isCritical());
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1462
        csan.check(ks, "ian1", 1, 1, "me@me.org");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1463
        csan.check(ks, "ian2", 1, 6, "http://me.org");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1464
        csan.check(ks, "ian3", 1, 2, "me.org");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1465
        csan.check(ks, "ian4", 1, 7, "192.168.0.1");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1466
        csan.check(ks, "ian5", 1, 8, "1.2.3.4");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1467
        csan.check(ks, "ian235", 1, 2, "me.org", 6, "http://me.org", 8, "1.2.3.4");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1468
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1469
        // SIA
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1470
        testOK("", pre+"sia1 -ext sia=care:uri:ldap://ca.com/cn=CA");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1471
        testOK("", pre+"sia2 -ext sia=ts:email:ts@ca.com");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1472
        testFail("SIA never critical", pre +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1473
                "sia3 -ext sia:critical=ts:email:ts@ca.com");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1474
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1475
        ks = loadStore("x.jks", "changeit", "JKS");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1476
        class CheckSia {
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1477
            void check(KeyStore ks, String alias, int type, Object... items)
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1478
                    throws Exception {
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1479
                int pos = 0;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1480
                System.err.print("x");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1481
                AccessDescription[] ads = null;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1482
                if (type == 0) {
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1483
                    SubjectInfoAccessExtension siae = (SubjectInfoAccessExtension)
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1484
                            ((X509CertImpl)ks.getCertificate(alias))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1485
                            .getExtension(PKIXExtensions.SubjectInfoAccess_Id);
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1486
                    ads = siae.getAccessDescriptions()
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1487
                            .toArray(new AccessDescription[0]);
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1488
                } else {
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1489
                    AuthorityInfoAccessExtension aiae =
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1490
                            (AuthorityInfoAccessExtension)
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1491
                            ((X509CertImpl)ks.getCertificate(alias))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1492
                            .getExtension(PKIXExtensions.AuthInfoAccess_Id);
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1493
                    ads = aiae.getAccessDescriptions()
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1494
                            .toArray(new AccessDescription[0]);
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1495
                }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1496
                Arrays.sort(ads, new Comparator<AccessDescription>() {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1497
                    @Override
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1498
                    public int compare(AccessDescription o1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1499
                                       AccessDescription o2) {
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1500
                        return o1.getAccessMethod().toString()
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1501
                                .compareTo(o2.getAccessMethod().toString());
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1502
                    }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1503
                });
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1504
                for (AccessDescription ad: ads) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1505
                    if (!ad.getAccessMethod().equals(items[pos++]) ||
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1506
                            !new Integer(ad.getAccessLocation().getType())
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1507
                                    .equals(items[pos++])) {
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1508
                        throw new RuntimeException("Not same type at " + pos);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1509
                    }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1510
                    String name = null;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1511
                    switch (ad.getAccessLocation().getType()) {
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1512
                        case 1:
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1513
                            name = ((RFC822Name)ad.getAccessLocation()
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1514
                                    .getName()).getName();
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1515
                            break;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1516
                        case 6:
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1517
                            name = ((URIName)ad.getAccessLocation()
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1518
                                    .getName()).getURI().toString();
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1519
                            break;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1520
                        default:
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1521
                            throw new RuntimeException("Not implemented: " + ad);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1522
                    }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1523
                    if (!name.equals(items[pos++])) {
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1524
                        throw new Exception("Name not same for " + ad +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1525
                                " at pos " + pos);
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1526
                    }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1527
                }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1528
            }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1529
        }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1530
        CheckSia csia = new CheckSia();
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1531
        assertTrue(!((X509CertImpl)ks.getCertificate("sia1"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1532
                .getExtension(PKIXExtensions.SubjectInfoAccess_Id).isCritical());
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1533
        csia.check(ks, "sia1", 0,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1534
                AccessDescription.Ad_CAREPOSITORY_Id, 6, "ldap://ca.com/cn=CA");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1535
        csia.check(ks, "sia2",
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1536
                0, AccessDescription.Ad_TIMESTAMPING_Id, 1, "ts@ca.com");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1537
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1538
        // AIA
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1539
        testOK("", pre+"aia1 -ext aia=cai:uri:ldap://ca.com/cn=CA");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1540
        testOK("", pre+"aia2 -ext aia=ocsp:email:ocsp@ca.com");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1541
        testFail("AIA never critical", pre +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1542
                "aia3 -ext aia:critical=ts:email:ts@ca.com");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1543
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1544
        ks = loadStore("x.jks", "changeit", "JKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1545
        assertTrue(!((X509CertImpl)ks.getCertificate("aia1"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1546
                .getExtension(PKIXExtensions.AuthInfoAccess_Id).isCritical());
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1547
        csia.check(ks, "aia1", 1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1548
                AccessDescription.Ad_CAISSUERS_Id, 6, "ldap://ca.com/cn=CA");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1549
        csia.check(ks, "aia2", 1,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1550
                AccessDescription.Ad_OCSP_Id, 1, "ocsp@ca.com");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1551
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1552
        // OID
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1553
        testOK("", pre+"oid1 -ext 1.2.3:critical=0102");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1554
        testOK("", pre+"oid2 -ext 1.2.3");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1555
        testOK("", pre+"oid12 -ext 1.2.3 -ext 1.2.4=01:02:03");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1556
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1557
        ks = loadStore("x.jks", "changeit", "JKS");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1558
        class CheckOid {
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1559
            void check(KeyStore ks, String alias, String oid, byte[] value)
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1560
                    throws Exception {
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1561
                int pos = 0;
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1562
                System.err.print("x");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1563
                Extension ex = ((X509CertImpl)ks.getCertificate(alias))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1564
                        .getExtension(new ObjectIdentifier(oid));
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1565
                if (!Arrays.equals(value, ex.getValue())) {
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1566
                    throw new RuntimeException("Not same content in " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1567
                            alias + " for " + oid);
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1568
                }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1569
            }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1570
        }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1571
        CheckOid coid = new CheckOid();
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1572
        assertTrue(((X509CertImpl)ks.getCertificate("oid1"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1573
                .getExtension(new ObjectIdentifier("1.2.3")).isCritical());
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1574
        assertTrue(!((X509CertImpl)ks.getCertificate("oid2"))
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1575
                .getExtension(new ObjectIdentifier("1.2.3")).isCritical());
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1576
        coid.check(ks, "oid1", "1.2.3", new byte[]{1,2});
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1577
        coid.check(ks, "oid2", "1.2.3", new byte[]{});
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1578
        coid.check(ks, "oid12", "1.2.3", new byte[]{});
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1579
        coid.check(ks, "oid12", "1.2.4", new byte[]{1,2,3});
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1580
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1581
        // honored
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1582
        testOK("", pre+"ca");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1583
        testOK("", pre+"a");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1584
        // request: BC,KU,1.2.3,1.2.4,1.2.5
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1585
        testOK("", simple+"-alias a -certreq " +
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1586
                "-ext BC=1 -ext KU=crl " +
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1587
                "-ext 1.2.3=01 -ext 1.2.4:critical=0102 -ext 1.2.5=010203 " +
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1588
                "-rfc -file test.req");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1589
        // printcertreq
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1590
        testOK("", "-printcertreq -file test.req");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1591
        // issue: deny KU, change criticality of 1.2.3 and 1.2.4,
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1592
        // change content of BC, add 2.3.4
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1593
        testOK("", simple+"-gencert -alias ca -infile test.req -ext " +
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1594
                "honored=all,-KU,1.2.3:critical,1.2.4:non-critical " +
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1595
                "-ext BC=2 -ext 2.3.4=01020304 " +
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1596
                "-debug -rfc -outfile test.cert");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1597
        testOK("", simple+"-importcert -file test.cert -alias a");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1598
        ks = loadStore("x.jks", "changeit", "JKS");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1599
        X509CertImpl a = (X509CertImpl)ks.getCertificate("a");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1600
        assertTrue(a.getAuthorityKeyIdentifierExtension() != null);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1601
        assertTrue(a.getSubjectKeyIdentifierExtension() != null);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1602
        assertTrue(a.getKeyUsage() == null);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1603
        assertTrue(a.getExtension(new ObjectIdentifier("1.2.3")).isCritical());
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1604
        assertTrue(!a.getExtension(new ObjectIdentifier("1.2.4")).isCritical());
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1605
        assertTrue(!a.getExtension(new ObjectIdentifier("1.2.5")).isCritical());
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1606
        assertTrue(a.getExtensionValue("1.2.3").length == 3);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1607
        assertTrue(a.getExtensionValue("1.2.4").length == 4);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1608
        assertTrue(a.getExtensionValue("1.2.5").length == 5);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1609
        assertTrue(a.getBasicConstraints() == 2);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1610
        assertTrue(!a.getExtension(new ObjectIdentifier("2.3.4")).isCritical());
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1611
        assertTrue(a.getExtensionValue("2.3.4").length == 6);
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1612
29110
ea89fdd8a5d5 8073181: keytool -ext honored not working correctly
weijun
parents: 28243
diff changeset
  1613
        // 8073181: keytool -ext honored not working correctly
ea89fdd8a5d5 8073181: keytool -ext honored not working correctly
weijun
parents: 28243
diff changeset
  1614
        testOK("", simple+"-gencert -alias ca -infile test.req -ext " +
ea89fdd8a5d5 8073181: keytool -ext honored not working correctly
weijun
parents: 28243
diff changeset
  1615
                "honored=1.2.3,1.2.4:critical " +
ea89fdd8a5d5 8073181: keytool -ext honored not working correctly
weijun
parents: 28243
diff changeset
  1616
                "-debug -rfc -outfile test2.cert");
ea89fdd8a5d5 8073181: keytool -ext honored not working correctly
weijun
parents: 28243
diff changeset
  1617
        testOK("", simple+"-importcert -file test2.cert -alias b");
ea89fdd8a5d5 8073181: keytool -ext honored not working correctly
weijun
parents: 28243
diff changeset
  1618
        ks = loadStore("x.jks", "changeit", "JKS");
ea89fdd8a5d5 8073181: keytool -ext honored not working correctly
weijun
parents: 28243
diff changeset
  1619
        X509CertImpl b = (X509CertImpl)ks.getCertificate("b");
ea89fdd8a5d5 8073181: keytool -ext honored not working correctly
weijun
parents: 28243
diff changeset
  1620
        assertTrue(!b.getExtension(new ObjectIdentifier("1.2.3")).isCritical());
ea89fdd8a5d5 8073181: keytool -ext honored not working correctly
weijun
parents: 28243
diff changeset
  1621
        assertTrue(b.getExtension(new ObjectIdentifier("1.2.4")).isCritical());
ea89fdd8a5d5 8073181: keytool -ext honored not working correctly
weijun
parents: 28243
diff changeset
  1622
29111
e9103f166a4a 8073182: keytool may generate duplicate extensions
weijun
parents: 29110
diff changeset
  1623
        // 8073182: keytool may generate duplicate extensions
e9103f166a4a 8073182: keytool may generate duplicate extensions
weijun
parents: 29110
diff changeset
  1624
        testOK("", pre+"dup -ext bc=2 -ext 2.5.29.19=30030101FF -ext bc=3");
e9103f166a4a 8073182: keytool may generate duplicate extensions
weijun
parents: 29110
diff changeset
  1625
        ks = loadStore("x.jks", "changeit", "JKS");
e9103f166a4a 8073182: keytool may generate duplicate extensions
weijun
parents: 29110
diff changeset
  1626
        X509CertImpl dup = (X509CertImpl)ks.getCertificate("dup");
e9103f166a4a 8073182: keytool may generate duplicate extensions
weijun
parents: 29110
diff changeset
  1627
        assertTrue(dup.getBasicConstraints() == 3);
e9103f166a4a 8073182: keytool may generate duplicate extensions
weijun
parents: 29110
diff changeset
  1628
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1629
        remove("x.jks");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1630
        remove("test.req");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1631
        remove("test.cert");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1632
    }
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1633
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
    void i18nTest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
        //   1.  keytool -help
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
        remove("x.jks");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1637
        testOK("", "-help");
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1638
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1639
        //   2. keytool -genkey -v -keysize 512 Enter "a" for the keystore
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1640
        // password. Check error (password too short). Enter "password" for
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1641
        // the keystore password. Hit 'return' for "first and last name",
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1642
        // "organizational unit", "City", "State", and "Country Code".
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1643
        // Type "yes" when they ask you if everything is correct.
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1644
        // Type 'return' for new key password.
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1645
        testOK("a\npassword\npassword\nMe\nHere\nNow\nPlace\nPlace\nUS\nyes\n\n",
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1646
                "-genkey -v -keysize 512 -keystore x.jks -storetype JKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
        //   3. keytool -list -v -storepass password
28243
47080f9ae750 8044445: JEP 229: Create PKCS12 Keystores by Default
vinnie
parents: 27344
diff changeset
  1648
        testOK("", "-list -v -storepass password -keystore x.jks -storetype JKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1649
        //   4. keytool -list -v Type "a" for the keystore password.
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1650
        // Check error (wrong keystore password).
28243
47080f9ae750 8044445: JEP 229: Create PKCS12 Keystores by Default
vinnie
parents: 27344
diff changeset
  1651
        testFail("a\n", "-list -v -keystore x.jks -storetype JKS");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1652
        assertTrue(ex.indexOf("password was incorrect") != -1);
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1653
        //   5. keytool -genkey -v -keysize 512 Enter "password" as the password.
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1654
        // Check error (alias 'mykey' already exists).
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1655
        testFail("password\n", "-genkey -v -keysize 512" +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1656
                " -keystore x.jks -storetype JKS");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1657
        assertTrue(ex.indexOf("alias <mykey> already exists") != -1);
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1658
        //   6. keytool -genkey -v -keysize 512 -alias mykey2 -storepass password
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1659
        // Hit 'return' for "first and last name", "organizational unit", "City",
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1660
        // "State", and "Country Code". Type "yes" when they ask you if
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1661
        // everything is correct. Type 'return' for new key password.
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1662
        testOK("\n\n\n\n\n\nyes\n\n", "-genkey -v -keysize 512 -alias mykey2" +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1663
                " -storepass password -keystore x.jks -storetype JKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
        //   7. keytool -list -v Type 'password' for the store password.
28243
47080f9ae750 8044445: JEP 229: Create PKCS12 Keystores by Default
vinnie
parents: 27344
diff changeset
  1665
        testOK("password\n", "-list -v -keystore x.jks -storetype JKS");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1666
        //   8. keytool -keypasswd -v -alias mykey2 -storepass password
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1667
        // Type "a" for the new key password. Type "aaaaaa" for the new key
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1668
        // password. Type "bbbbbb" when re-entering the new key password.
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1669
        // Type "a" for the new key password. Check Error (too many failures).
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1670
        testFail("a\naaaaaa\nbbbbbb\na\n", "-keypasswd -v -alias mykey2" +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1671
                " -storepass password -keystore x.jks -storetype JKS");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1672
        assertTrue(ex.indexOf("Too many failures - try later") != -1);
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1673
        //   9. keytool -keypasswd -v -alias mykey2 -storepass password
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1674
        // Type "aaaaaa" for the new key password. Type "aaaaaa"
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1675
        // when re-entering the new key password.
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1676
        testOK("aaaaaa\naaaaaa\n", "-keypasswd -v -alias mykey2 " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1677
                "-storepass password -keystore x.jks -storetype JKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
        //  10. keytool -selfcert -v -alias mykey -storepass password
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1679
        testOK("", "-selfcert -v -alias mykey -storepass password " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1680
                "-keystore x.jks -storetype JKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
        //  11. keytool -list -v -storepass password
28243
47080f9ae750 8044445: JEP 229: Create PKCS12 Keystores by Default
vinnie
parents: 27344
diff changeset
  1682
        testOK("", "-list -v -storepass password -keystore x.jks -storetype JKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
        //  12. keytool -export -v -alias mykey -file cert -storepass password
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
        remove("cert");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1685
        testOK("", "-export -v -alias mykey -file cert -storepass password " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1686
                "-keystore x.jks -storetype JKS");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1687
        //  13. keytool -import -v -file cert -storepass password
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1688
        // Check error (Certificate reply and cert are the same)
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1689
        testFail("", "-import -v -file cert -storepass password" +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1690
                " -keystore x.jks -storetype JKS");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1691
        assertTrue(ex.indexOf("Certificate reply and certificate" +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1692
                " in keystore are identical") != -1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
        //  14. keytool -printcert -file cert
28243
47080f9ae750 8044445: JEP 229: Create PKCS12 Keystores by Default
vinnie
parents: 27344
diff changeset
  1694
        testOK("", "-printcert -file cert -keystore x.jks -storetype JKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
        remove("cert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
        //  15. keytool -list -storepass password -provider sun.security.provider.Sun
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1697
        testOK("", "-list -storepass password" +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1698
                " -provider sun.security.provider.Sun" +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1699
                " -keystore x.jks -storetype JKS");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1701
        //Error tests
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1703
        //   1. keytool -storepasswd -storepass password -new abc
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1704
        // Check error (password too short)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1705
        testFail("", "-storepasswd -storepass password -new abc");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1706
        assertTrue(ex.indexOf("New password must be at least 6 characters") != -1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
        // Changed, no NONE needed now
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
        //   2. keytool -list -storetype PKCS11 Check error (-keystore must be NONE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
        //testFail("", "-list -storetype PKCS11");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1710
        //assertTrue(err.indexOf("keystore must be NONE") != -1);
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1711
        //   3. keytool -storepasswd -storetype PKCS11 -keystore NONE
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1712
        // Check error (unsupported operation)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
        testFail("", "-storepasswd -storetype PKCS11 -keystore NONE");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1714
        assertTrue(ex.indexOf("UnsupportedOperationException") != -1);
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1715
        //   4. keytool -keypasswd -storetype PKCS11 -keystore NONE
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1716
        // Check error (unsupported operation)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
        testFail("", "-keypasswd -storetype PKCS11 -keystore NONE");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1718
        assertTrue(ex.indexOf("UnsupportedOperationException") != -1);
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1719
        //   5. keytool -list -protected -storepass password
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1720
        // Check error (password can not be specified with -protected)
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1721
        testFail("", "-list -protected -storepass password " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1722
                "-keystore x.jks -storetype JKS");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1723
        assertTrue(ex.indexOf("if -protected is specified, then") != -1);
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1724
        //   6. keytool -keypasswd -protected -keypass password
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1725
        // Check error (password can not be specified with -protected)
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1726
        testFail("", "-keypasswd -protected -keypass password " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1727
                "-keystore x.jks -storetype JKS");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1728
        assertTrue(ex.indexOf("if -protected is specified, then") != -1);
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1729
        //   7. keytool -keypasswd -protected -new password
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1730
        // Check error (password can not be specified with -protected)
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1731
        testFail("", "-keypasswd -protected -new password " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1732
                "-keystore x.jks -storetype JKS");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1733
        assertTrue(ex.indexOf("if -protected is specified, then") != -1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
        remove("x.jks");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
    void i18nPKCS11Test() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
        //PKCS#11 tests
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
        //   1. sccs edit cert8.db key3.db
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
        //Runtime.getRuntime().exec("/usr/ccs/bin/sccs edit cert8.db key3.db");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1742
        testOK("", p11Arg + ("-storepass test12 -genkey -alias genkey" +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1743
                " -dname cn=genkey -keysize 512 -keyalg rsa"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
        testOK("", p11Arg + "-storepass test12 -list");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
        testOK("", p11Arg + "-storepass test12 -list -alias genkey");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1746
        testOK("", p11Arg +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1747
                "-storepass test12 -certreq -alias genkey -file genkey.certreq");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1748
        testOK("", p11Arg +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1749
                "-storepass test12 -export -alias genkey -file genkey.cert");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
        testOK("", "-printcert -file genkey.cert");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1751
        testOK("", p11Arg +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1752
                "-storepass test12 -selfcert -alias genkey -dname cn=selfCert");
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1753
        testOK("", p11Arg +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1754
                "-storepass test12 -list -alias genkey -v");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1755
        assertTrue(out.indexOf("Owner: CN=selfCert") != -1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
        //(check that cert subject DN is [cn=selfCert])
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
        testOK("", p11Arg + "-storepass test12 -delete -alias genkey");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
        testOK("", p11Arg + "-storepass test12 -list");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1759
        assertTrue(out.indexOf("Your keystore contains 0 entries") != -1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
        //(check for empty database listing)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
        //Runtime.getRuntime().exec("/usr/ccs/bin/sccs unedit cert8.db key3.db");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
        remove("genkey.cert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
        remove("genkey.certreq");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1764
        //  12. sccs unedit cert8.db key3.db
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
    // tesing new option -srcProviderName
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
    void sszzTest() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
        testAnyway("", NSS_P11_ARG+"-delete -alias nss -storepass test12");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
        testAnyway("", NZZ_P11_ARG+"-delete -alias nss -storepass test12");
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1771
        testOK("", NSS_P11_ARG+"-genkeypair -dname CN=NSS " +
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1772
                "-alias nss -storepass test12");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
        testOK("", NSS_SRC_P11_ARG + NZZ_P11_ARG +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
                "-importkeystore -srcstorepass test12 -deststorepass test12");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
        testAnyway("", NSS_P11_ARG+"-delete -alias nss -storepass test12");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
        testAnyway("", NZZ_P11_ARG+"-delete -alias nss -storepass test12");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1778
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
    public static void main(String[] args) throws Exception {
10138
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1780
        Locale reservedLocale = Locale.getDefault();
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1781
        try {
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1782
            // first test if HumanInputStream really acts like a human being
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1783
            HumanInputStream.test();
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1784
            KeyToolTest t = new KeyToolTest();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
10138
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1786
            if (System.getProperty("file") != null) {
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1787
                t.sqeTest();
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1788
                t.testAll();
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1789
                t.i18nTest();
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1790
                t.v3extTest("RSA");
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1791
                t.v3extTest("DSA");
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1792
                boolean testEC = true;
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1793
                try {
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1794
                    KeyPairGenerator.getInstance("EC");
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1795
                } catch (NoSuchAlgorithmException nae) {
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1796
                    testEC = false;
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1797
                }
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1798
                if (testEC) t.v3extTest("EC");
2067
6f9db5f305cd 6780416: New keytool commands/options: -gencert, -printcertreq, -ext
weijun
parents: 2
diff changeset
  1799
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
10138
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1801
            if (System.getProperty("nss") != null) {
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1802
                t.srcP11Arg = NSS_SRC_P11_ARG;
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1803
                t.p11Arg = NSS_P11_ARG;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
10138
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1805
                t.testPKCS11();
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1806
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1807
                // FAIL:
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1808
                // 1. we still don't have srcprovidername yet
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1809
                // 2. cannot store privatekey into NSS keystore
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1810
                //    java.security.KeyStoreException: sun.security.pkcs11
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1811
                //      .wrapper.PKCS11Exception: CKR_TEMPLATE_INCOMPLETE.
10138
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1812
                //t.testPKCS11ImportKeyStore();
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1813
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1814
                t.i18nPKCS11Test();
29120
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1815
                //FAIL: currently PKCS11-NSS does not support
db85cf043b4f 8073853: KeyToolTest.java has too many too long lines
weijun
parents: 29111
diff changeset
  1816
                // 2 NSS KeyStores to be loaded at the same time
10138
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1817
                //t.sszzTest();
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1818
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
10138
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1820
            if (System.getProperty("solaris") != null) {
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1821
                // For Solaris Cryptography Framework
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1822
                t.srcP11Arg = SUN_SRC_P11_ARG;
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1823
                t.p11Arg = SUN_P11_ARG;
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1824
                t.testPKCS11();
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1825
                t.testPKCS11ImportKeyStore();
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1826
                t.i18nPKCS11Test();
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1827
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
10138
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1829
            System.out.println("Test pass!!!");
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1830
        } finally {
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1831
            // restore the reserved locale
b7572da25d15 7068662: Reserve and restore the default locale
xuelei
parents: 5506
diff changeset
  1832
            Locale.setDefault(reservedLocale);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1834
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1836
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
class TestException extends Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
    public TestException(String e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
        super(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
 * HumanInputStream tries to act like a human sitting in front of a computer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
 * terminal typing on the keyboard while the keytool program is running.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
 * keytool has called InputStream.read() and BufferedReader.readLine() in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
 * various places. a call to B.readLine() will try to buffer as much input as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
 * possible. Thus, a trivial InputStream will find it impossible to feed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
 * anything to I.read() after a B.readLine() call.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
 * This is why i create HumanInputStream, which will only send a single line
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
 * to B.readLine(), no more, no less, and the next I.read() can have a chance
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
 * to read the exact character right after "\n".
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
 * I don't know why HumanInputStream works.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
class HumanInputStream extends InputStream {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
    byte[] src;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
    int pos;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
    int length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
    boolean inLine;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
    int stopIt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
    public HumanInputStream(String input) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
        src = input.getBytes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
        pos = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
        length = src.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
        stopIt = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
        inLine = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
    // the trick: when called through read(byte[], int, int),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
    // return -1 twice after "\n"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1876
    @Override public int read() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
        int re;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
        if(pos < length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
            re = src[pos];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
            if(inLine) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
                if(stopIt > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
                    stopIt--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1883
                    re = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1884
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1885
                    if(re == '\n') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1886
                        stopIt = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1888
                    pos++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1889
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
                pos++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
            re = -1;//throw new IOException("NO MORE TO READ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
        //if (re < 32) System.err.printf("[%02d]", re);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
        //else System.err.printf("[%c]", (char)re);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
        return re;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
    @Override public int read(byte[] buffer, int offset, int len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
        inLine = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
            int re = super.read(buffer, offset, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
            return re;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
        } catch(Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1906
            throw new RuntimeException("HumanInputStream error");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
            inLine = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1911
    @Override public int available() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1912
        if(pos < length) return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1913
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1914
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1915
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1916
    // test part
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1917
    static void assertTrue(boolean bool) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1918
        if(!bool)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1919
            throw new RuntimeException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1920
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1921
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1922
    public static void test() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1923
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1924
        class Tester {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1925
            HumanInputStream is;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1926
            BufferedReader reader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1927
            Tester(String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1928
                is = new HumanInputStream(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1929
                reader = new BufferedReader(new InputStreamReader(is));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1930
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1931
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1932
            // three kinds of test method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1933
            // 1. read byte by byte from InputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1934
            void testStreamReadOnce(int expection) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1935
                assertTrue(is.read() == expection);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1936
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1937
            void testStreamReadMany(String expection) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1938
                char[] keys = expection.toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1939
                for(int i=0; i<keys.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1940
                    assertTrue(is.read() == keys[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1941
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1942
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1943
            // 2. read a line with a newly created Reader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1944
            void testReaderReadline(String expection) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1945
                String s = new BufferedReader(new InputStreamReader(is)).readLine();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1946
                if(s == null) assertTrue(expection == null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1947
                else assertTrue(s.equals(expection));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1948
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1949
            // 3. read a line with the old Reader
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1950
            void testReaderReadline2(String expection) throws Exception  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1951
                String s = reader.readLine();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1952
                if(s == null) assertTrue(expection == null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1953
                else assertTrue(s.equals(expection));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1954
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1955
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1956
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1957
        Tester test;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1958
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1959
        test = new Tester("111\n222\n\n444\n\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1960
        test.testReaderReadline("111");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1961
        test.testReaderReadline("222");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1962
        test.testReaderReadline("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1963
        test.testReaderReadline("444");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
        test.testReaderReadline("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1965
        test.testReaderReadline(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1966
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1967
        test = new Tester("111\n222\n\n444\n\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1968
        test.testReaderReadline2("111");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1969
        test.testReaderReadline2("222");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1970
        test.testReaderReadline2("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1971
        test.testReaderReadline2("444");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1972
        test.testReaderReadline2("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1973
        test.testReaderReadline2(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1974
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1975
        test = new Tester("111\n222\n\n444\n\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1976
        test.testReaderReadline2("111");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
        test.testReaderReadline("222");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
        test.testReaderReadline2("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1979
        test.testReaderReadline2("444");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1980
        test.testReaderReadline("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1981
        test.testReaderReadline2(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1982
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1983
        test = new Tester("1\n2");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
        test.testStreamReadMany("1\n2");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
        test.testStreamReadOnce(-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1986
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
        test = new Tester("12\n234");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1988
        test.testStreamReadOnce('1');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
        test.testReaderReadline("2");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1990
        test.testStreamReadOnce('2');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1991
        test.testReaderReadline2("34");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1992
        test.testReaderReadline2(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1993
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
        test = new Tester("changeit\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1995
        test.testStreamReadMany("changeit\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1996
        test.testReaderReadline(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
        test = new Tester("changeit\nName\nCountry\nYes\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
        test.testStreamReadMany("changeit\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2000
        test.testReaderReadline("Name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2001
        test.testReaderReadline("Country");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
        test.testReaderReadline("Yes");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
        test.testReaderReadline(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2005
        test = new Tester("Me\nHere\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
        test.testReaderReadline2("Me");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
        test.testReaderReadline2("Here");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
}