678N/A/*
3579N/A * Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
678N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
678N/A *
678N/A * This code is free software; you can redistribute it and/or modify it
678N/A * under the terms of the GNU General Public License version 2 only, as
678N/A * published by the Free Software Foundation.
678N/A *
678N/A * This code is distributed in the hope that it will be useful, but WITHOUT
678N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
678N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
678N/A * version 2 for more details (a copy is included in the LICENSE file that
678N/A * accompanied this code).
678N/A *
678N/A * You should have received a copy of the GNU General Public License version
678N/A * 2 along with this work; if not, write to the Free Software Foundation,
678N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
678N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
678N/A */
678N/A
678N/A/*
678N/A * @test
678N/A * @bug 4641821
3579N/A * @run main/othervm KerberosHashEqualsTest
678N/A * @summary hashCode() and equals() for KerberosKey and KerberosTicket
678N/A */
678N/A
678N/Aimport java.net.InetAddress;
678N/Aimport java.util.Date;
678N/Aimport javax.security.auth.kerberos.KerberosKey;
678N/Aimport javax.security.auth.kerberos.KerberosPrincipal;
678N/Aimport javax.security.auth.kerberos.KerberosTicket;
678N/A
678N/Apublic class KerberosHashEqualsTest {
678N/A public static void main(String[] args) throws Exception {
678N/A new OneKDC(null);
678N/A new KerberosHashEqualsTest().check();
678N/A }
678N/A
678N/A void checkSame(Object o1, Object o2) {
678N/A if(!o1.equals(o2)) {
678N/A throw new RuntimeException("equals() fails");
678N/A }
678N/A if(o1.hashCode() != o2.hashCode()) {
678N/A throw new RuntimeException("hashCode() not same");
678N/A }
678N/A }
678N/A
678N/A void checkNotSame(Object o1, Object o2) {
678N/A if(o1.equals(o2)) {
678N/A throw new RuntimeException("equals() succeeds");
678N/A }
678N/A }
678N/A
678N/A void check() throws Exception {
678N/A
678N/A // The key part:
678N/A // new KerberosKey(principal, bytes, keyType, version)
678N/A
678N/A KerberosKey k1, k2;
678N/A KerberosPrincipal CLIENT = new KerberosPrincipal("client");
678N/A KerberosPrincipal SERVER = new KerberosPrincipal("server");
678N/A byte[] PASS = "pass".getBytes();
678N/A
678N/A k1 = new KerberosKey(CLIENT, PASS, 1, 1);
678N/A k2 = new KerberosKey(CLIENT, PASS, 1, 1);
678N/A checkSame(k1, k1); // me is me
678N/A checkSame(k1, k2); // same
678N/A
678N/A // A destroyed key doesn't equal to any key
678N/A k2.destroy();
678N/A checkNotSame(k1, k2);
678N/A checkNotSame(k2, k1);
678N/A k1.destroy();
678N/A checkNotSame(k1, k2); // even if they are both destroyed
678N/A checkNotSame(k2, k1);
678N/A checkSame(k2, k2);
678N/A
678N/A // a little difference means not equal
678N/A k1 = new KerberosKey(CLIENT, PASS, 1, 1);
678N/A k2 = new KerberosKey(SERVER, PASS, 1, 1);
678N/A checkNotSame(k1, k2); // Different principal name
678N/A
678N/A k2 = new KerberosKey(CLIENT, "ssap".getBytes(), 1, 1);
678N/A checkNotSame(k1, k2); // Different password
678N/A
678N/A k2 = new KerberosKey(CLIENT, PASS, 2, 1);
678N/A checkNotSame(k1, k2); // Different keytype
678N/A
678N/A k2 = new KerberosKey(CLIENT, PASS, 1, 2);
678N/A checkNotSame(k1, k2); // Different version
678N/A
678N/A k2 = new KerberosKey(null, PASS, 1, 2);
678N/A checkNotSame(k1, k2); // null is not non-null
678N/A
678N/A k1 = new KerberosKey(null, PASS, 1, 2);
678N/A checkSame(k1, k2); // null is null
678N/A
678N/A checkNotSame(k1, "Another Object");
678N/A
678N/A // The ticket part:
678N/A // new KerberosTicket(asn1 bytes, client, server, session key, type, flags,
678N/A // auth, start, end, renewUntil times, address)
678N/A
678N/A KerberosTicket t1, t2;
678N/A
678N/A byte[] ASN1 = "asn1".getBytes();
678N/A boolean[] FORWARDABLE = new boolean[] {true, true};
678N/A boolean[] ALLTRUE = new boolean[] {true, true, true, true, true, true, true, true, true, true};
678N/A Date D0 = new Date(0);
678N/A
678N/A t1 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 1, FORWARDABLE, D0, D0, D0, D0, null);
678N/A t2 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 1, FORWARDABLE, D0, D0, D0, D0, null);
678N/A checkSame(t1, t1);
678N/A checkSame(t1, t2);
678N/A
678N/A // destroyed tickets doesn't equal to each other
678N/A t1.destroy();
678N/A checkNotSame(t1, t2);
678N/A checkNotSame(t2, t1);
678N/A
678N/A t2.destroy();
678N/A checkNotSame(t1, t2); // even if they are both destroyed
678N/A checkNotSame(t2, t1);
678N/A
678N/A checkSame(t2, t2); // unless they are the same object
678N/A
678N/A // a little difference means not equal
678N/A t1 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 1, FORWARDABLE, D0, D0, D0, D0, null);
678N/A t2 = new KerberosTicket("asn11".getBytes(), CLIENT, SERVER, PASS, 1, FORWARDABLE, D0, D0, D0, D0, null);
678N/A checkNotSame(t1, t2); // Different ASN1 encoding
678N/A
678N/A t2 = new KerberosTicket(ASN1, new KerberosPrincipal("client1"), SERVER, PASS, 1, FORWARDABLE, D0, D0, D0, D0, null);
678N/A checkNotSame(t1, t2); // Different client
678N/A
678N/A t2 = new KerberosTicket(ASN1, CLIENT, new KerberosPrincipal("server1"), PASS, 1, FORWARDABLE, D0, D0, D0, D0, null);
678N/A checkNotSame(t1, t2); // Different server
678N/A
678N/A t2 = new KerberosTicket(ASN1, CLIENT, SERVER, "pass1".getBytes(), 1, FORWARDABLE, D0, D0, D0, D0, null);
678N/A checkNotSame(t1, t2); // Different session key
678N/A
678N/A t2 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 2, FORWARDABLE, D0, D0, D0, D0, null);
678N/A checkNotSame(t1, t2); // Different key type
678N/A
678N/A t2 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 1, new boolean[] {true, false}, D0, D0, D0, D0, null);
678N/A checkNotSame(t1, t2); // Different flags, not FORWARDABLE
678N/A
678N/A t2 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 1, FORWARDABLE, new Date(1), D0, D0, D0, null);
678N/A checkNotSame(t1, t2); // Different authtime
678N/A
678N/A t2 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 1, FORWARDABLE, D0, new Date(1), D0, D0, null);
678N/A checkNotSame(t1, t2); // Different starttime
678N/A
678N/A t2 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 1, FORWARDABLE, D0, D0, new Date(1), D0, null);
678N/A checkNotSame(t1, t2); // Different endtime
678N/A
678N/A t2 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 1, FORWARDABLE, D0, D0, D0, D0, new InetAddress[2]);
678N/A checkNotSame(t1, t2); // Different client addresses
678N/A
678N/A t2 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 1, FORWARDABLE, D0, D0, D0, new Date(1), null);
678N/A t1 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 1, FORWARDABLE, D0, D0, D0, new Date(2), null);
678N/A checkSame(t1, t2); // renewtill is ignored when RENEWABLE ticket flag is not set.
678N/A
678N/A t2 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 1, ALLTRUE, D0, D0, D0, new Date(1), null);
678N/A t1 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 1, ALLTRUE, D0, D0, D0, new Date(2), null);
678N/A checkNotSame(t1, t2); // renewtill is used when RENEWABLE is set.
678N/A
678N/A checkNotSame(t1, "Another Object");
678N/A System.out.println("Good!");
678N/A }
678N/A}