test/jdk/sun/security/krb5/auto/LifeTimeInSeconds.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:
3220
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
     1
/*
48668
2da4a52715d8 8194486: Several krb5 tests failed in Mac.
ssahoo
parents: 47216
diff changeset
     2
 * Copyright (c) 2009, 2018, Oracle and/or its affiliates. All rights reserved.
3220
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
     4
 *
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
     7
 * published by the Free Software Foundation.
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
     8
 *
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    13
 * accompanied this code).
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    14
 *
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3220
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3220
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3220
diff changeset
    21
 * questions.
3220
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    22
 */
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    23
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    24
/*
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    25
 * @test
48668
2da4a52715d8 8194486: Several krb5 tests failed in Mac.
ssahoo
parents: 47216
diff changeset
    26
 * @bug 6857802 8194486
3220
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    27
 * @summary GSS getRemainingInitLifetime method returns milliseconds not seconds
48668
2da4a52715d8 8194486: Several krb5 tests failed in Mac.
ssahoo
parents: 47216
diff changeset
    28
 * @library /test/lib
2da4a52715d8 8194486: Several krb5 tests failed in Mac.
ssahoo
parents: 47216
diff changeset
    29
 * @run main jdk.test.lib.FileInstaller TestHosts TestHosts
2da4a52715d8 8194486: Several krb5 tests failed in Mac.
ssahoo
parents: 47216
diff changeset
    30
 * @run main/othervm -Djdk.net.hosts.file=TestHosts LifeTimeInSeconds
3220
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    31
 */
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    32
import org.ietf.jgss.GSSCredential;
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    33
import org.ietf.jgss.GSSManager;
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    34
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    35
public class LifeTimeInSeconds {
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    36
    public static void main(String[] args) throws Exception {
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    37
        new OneKDC(null).writeJAASConf();
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    38
        System.setProperty("javax.security.auth.useSubjectCredsOnly", "false");
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    39
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    40
        GSSManager gm = GSSManager.getInstance();
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    41
        GSSCredential cred = gm.createCredential(GSSCredential.INITIATE_AND_ACCEPT);
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    42
        int time = cred.getRemainingLifetime();
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    43
        int time2 = cred.getRemainingInitLifetime(null);
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    44
        // The test KDC issues a TGT with a default lifetime of 11 hours
27946
9f99b93cbbb2 8044500: Add kinit options and krb5.conf flags that allow users to obtain renewable tickets and specify ticket lifetimes
weijun
parents: 8396
diff changeset
    45
        int elevenhrs = KDC.DEFAULT_LIFETIME;
3220
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    46
        if (time > elevenhrs+60 || time < elevenhrs-60) {
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    47
            throw new Exception("getRemainingLifetime returns wrong value.");
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    48
        }
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    49
        if (time2 > elevenhrs+60 || time2 < elevenhrs-60) {
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    50
            throw new Exception("getRemainingInitLifetime returns wrong value.");
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    51
        }
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    52
    }
5516f07e05d0 6857802: GSS getRemainingInitLifetime method returns milliseconds not seconds
weijun
parents:
diff changeset
    53
}