jdk/test/sun/security/pkcs11/rsa/TestCACerts.java
author skovalev
Thu, 15 Sep 2016 13:03:03 +0300
changeset 40975 680639c9b307
parent 35379 1e8e336ef66b
child 42693 6645de32a866
permissions -rw-r--r--
8165689: Fix module dependencies for sun/security/pkcs11/* tests Reviewed-by: mullan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
     2
 * Copyright (c) 2003, 2016, 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: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
40975
680639c9b307 8165689: Fix module dependencies for sun/security/pkcs11/* tests
skovalev
parents: 35379
diff changeset
    24
/*
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug 4856966
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Test the new RSA provider can verify all the RSA certs in the cacerts file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * @library ..
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 14342
diff changeset
    30
 * @library ../../../../java/security/testlibrary
40975
680639c9b307 8165689: Fix module dependencies for sun/security/pkcs11/* tests
skovalev
parents: 35379
diff changeset
    31
 * @modules jdk.crypto.pkcs11
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    32
 * @run main/othervm TestCACerts
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    33
 * @run main/othervm TestCACerts sm TestCACerts.policy
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
// this test serves as our known answer test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    38
import java.io.FileInputStream;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    39
import java.io.InputStream;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    40
import java.security.KeyStore;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    41
import java.security.Provider;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    42
import java.security.PublicKey;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    43
import java.security.Security;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    44
import java.security.cert.X509Certificate;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    45
import java.util.Enumeration;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
public class TestCACerts extends PKCS11Test {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    public static void main(String[] args) throws Exception {
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    50
        main(new TestCACerts(), args);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    53
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    public void main(Provider p) throws Exception {
32138
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 31270
diff changeset
    55
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 31270
diff changeset
    56
        /*
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 31270
diff changeset
    57
         * Use Solaris SPARC 11.2 or later to avoid an intermittent failure
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 31270
diff changeset
    58
         * when running SunPKCS11-Solaris (8044554)
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 31270
diff changeset
    59
         */
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 31270
diff changeset
    60
        if (p.getName().equals("SunPKCS11-Solaris") &&
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    61
            props.getProperty("os.name").equals("SunOS") &&
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    62
            props.getProperty("os.arch").equals("sparcv9") &&
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    63
            props.getProperty("os.version").compareTo("5.11") <= 0 &&
32138
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 31270
diff changeset
    64
            getDistro().compareTo("11.2") < 0) {
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 31270
diff changeset
    65
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 31270
diff changeset
    66
            System.out.println("SunPKCS11-Solaris provider requires " +
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 31270
diff changeset
    67
                "Solaris SPARC 11.2 or later, skipping");
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 31270
diff changeset
    68
            return;
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 31270
diff changeset
    69
        }
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 31270
diff changeset
    70
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        long start = System.currentTimeMillis();
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 14342
diff changeset
    72
        Providers.setAt(p, 1);
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    73
        try {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    74
            String PROVIDER = p.getName();
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    75
            String javaHome = props.getProperty("java.home");
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    76
            String caCerts = javaHome + SEP + "lib" + SEP + "security" + SEP + "cacerts";
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    77
            KeyStore ks;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    78
            try (InputStream in = new FileInputStream(caCerts)) {
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    79
                ks = KeyStore.getInstance(KeyStore.getDefaultType());
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    80
                ks.load(in, null);
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    81
            }
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    82
            for (Enumeration e = ks.aliases(); e.hasMoreElements(); ) {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    83
                String alias = (String)e.nextElement();
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    84
                if (ks.isCertificateEntry(alias)) {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    85
                    System.out.println("* Testing " + alias + "...");
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    86
                    X509Certificate cert = (X509Certificate)ks.getCertificate(alias);
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    87
                    PublicKey key = cert.getPublicKey();
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    88
                    String alg = key.getAlgorithm();
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    89
                    if (alg.equals("RSA")) {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    90
                        System.out.println("Signature algorithm: " + cert.getSigAlgName());
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    91
                        cert.verify(key, PROVIDER);
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    92
                    } else {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    93
                        System.out.println("Skipping cert with key: " + alg);
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    94
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                } else {
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    96
                    System.out.println("Skipping alias " + alias);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            }
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    99
            long stop = System.currentTimeMillis();
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   100
            System.out.println("All tests passed (" + (stop - start) + " ms).");
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 14342
diff changeset
   101
         } finally {
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   102
            Security.removeProvider(p.getName());
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 14342
diff changeset
   103
         }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
}