test/jdk/sun/security/krb5/auto/UseCacheAndStoreKey.java
author ssahoo
Thu, 25 Jan 2018 05:57:22 -0800
changeset 48668 2da4a52715d8
parent 47216 71c04702a3d5
permissions -rw-r--r--
8194486: Several krb5 tests failed in Mac. Summary: Several tests failed due to improper host service Reviewed-by: weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14030
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
     1
/*
48668
2da4a52715d8 8194486: Several krb5 tests failed in Mac.
ssahoo
parents: 47216
diff changeset
     2
 * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
14030
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
     4
 *
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
     7
 * published by the Free Software Foundation.
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
     8
 *
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    13
 * accompanied this code).
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    14
 *
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    18
 *
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    21
 * questions.
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    22
 */
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    23
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    24
/*
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    25
 * @test
48668
2da4a52715d8 8194486: Several krb5 tests failed in Mac.
ssahoo
parents: 47216
diff changeset
    26
 * @bug 7201053 8194486
14030
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    27
 * @summary Krb5LoginModule shows NPE when both useTicketCache and storeKey
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    28
 *          are set to true
48668
2da4a52715d8 8194486: Several krb5 tests failed in Mac.
ssahoo
parents: 47216
diff changeset
    29
 * @library /test/lib
14030
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    30
 * @compile -XDignore.symbol.file UseCacheAndStoreKey.java
48668
2da4a52715d8 8194486: Several krb5 tests failed in Mac.
ssahoo
parents: 47216
diff changeset
    31
 * @run main jdk.test.lib.FileInstaller TestHosts TestHosts
2da4a52715d8 8194486: Several krb5 tests failed in Mac.
ssahoo
parents: 47216
diff changeset
    32
 * @run main/othervm -Djdk.net.hosts.file=TestHosts UseCacheAndStoreKey
14030
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    33
 */
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    34
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    35
import java.io.FileOutputStream;
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    36
import javax.security.auth.login.LoginException;
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    37
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    38
// The basic krb5 test skeleton you can copy from
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    39
public class UseCacheAndStoreKey {
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    40
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    41
    public static void main(String[] args) throws Exception {
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    42
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    43
        new OneKDC(null).writeJAASConf();
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    44
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    45
        // KDC would save ccache for client
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    46
        System.setProperty("test.kdc.save.ccache", "cache.here");
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    47
        try (FileOutputStream fos = new FileOutputStream(OneKDC.JAAS_CONF)) {
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    48
            fos.write((
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    49
                "me {\n" +
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    50
                "    com.sun.security.auth.module.Krb5LoginModule required\n" +
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    51
                "    principal=\"" + OneKDC.USER + "\"\n" +
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    52
                "    useTicketCache=true\n" +
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    53
                "    ticketCache=cache.here\n" +
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    54
                "    isInitiator=true\n" +
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    55
                "    storeKey=true;\n};\n"
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    56
                ).getBytes());
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    57
        }
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    58
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    59
        // The first login will use default callback and succeed
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    60
        Context.fromJAAS("me");
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    61
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    62
        // The second login uses ccache and won't be able to store the keys
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    63
        try {
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    64
            Context.fromJAAS("me");
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    65
            throw new Exception("Should fail");
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    66
        } catch (LoginException le) {
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    67
            if (le.getMessage().indexOf("NullPointerException") >= 0
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    68
                    || le.getCause() instanceof NullPointerException) {
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    69
                throw new Exception("NPE");
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    70
            }
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    71
        }
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    72
    }
8dc91f5c3d67 7201053: Krb5LoginModule shows NPE when both useTicketCache and storeKey are set to true
weijun
parents:
diff changeset
    73
}