1 #
   2 # Copyright (c) 2009, 2012, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.
   8 #
   9 # This code is distributed in the hope that it will be useful, but WITHOUT
  10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12 # version 2 for more details (a copy is included in the LICENSE file that
  13 # accompanied this code).
  14 #
  15 # You should have received a copy of the GNU General Public License version
  16 # 2 along with this work; if not, write to the Free Software Foundation,
  17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18 #
  19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 # or visit www.oracle.com if you need additional information or have any
  21 # questions.
  22 #
  23 
  24 # @test
  25 # @bug 6317711 6944847
  26 # @summary Ensure the GSSName has the correct impl which respects
  27 # the contract for equals and hashCode across different configurations.
  28 
  29 # set a few environment variables so that the shell-script can run stand-alone
  30 # in the source directory
  31 
  32 if [ "${TESTSRC}" = "" ] ; then
  33    TESTSRC="."
  34 fi
  35 
  36 if [ "${TESTCLASSES}" = "" ] ; then
  37    TESTCLASSES="."
  38 fi
  39 
  40 if [ "${TESTJAVA}" = "" ] ; then
  41    echo "TESTJAVA not set.  Test cannot execute."
  42    echo "FAILED!!!"
  43    exit 1
  44 fi
  45 
  46 if [ "${COMPILEJAVA}" = "" ]; then
  47     COMPILEJAVA="${TESTJAVA}"
  48 fi
  49 
  50 NATIVE=false
  51 
  52 # set platform-dependent variables
  53 OS=`uname -s`
  54 case "$OS" in
  55   SunOS | Linux )
  56     PATHSEP=":"
  57     FILESEP="/"
  58     NATIVE=true
  59     ;;
  60   Darwin )
  61     PATHSEP=":"
  62     FILESEP="/"
  63     ;;
  64   CYGWIN* )
  65     PATHSEP=";"
  66     FILESEP="/"
  67     ;;
  68   Windows* )
  69     PATHSEP=";"
  70     FILESEP="\\"
  71     ;;
  72   * )
  73     echo "Unrecognized system!"
  74     exit 1;
  75     ;;
  76 esac
  77 
  78 TEST=Krb5NameEquals
  79 
  80 ${COMPILEJAVA}${FILESEP}bin${FILESEP}javac ${TESTJAVACOPTS} ${TESTTOOLVMOPTS} \
  81     -d ${TESTCLASSES}${FILESEP} \
  82     ${TESTSRC}${FILESEP}${TEST}.java
  83 
  84 EXIT_STATUS=0
  85 
  86 if [ "${NATIVE}" = "true" ] ; then
  87     echo "Testing native provider"
  88     ${TESTJAVA}${FILESEP}bin${FILESEP}java ${TESTVMOPTS} \
  89         -classpath ${TESTCLASSES} \
  90         -Dsun.security.jgss.native=true \
  91         ${TEST}
  92     if [ $? != 0 ] ; then
  93         echo "Native provider fails"
  94         EXIT_STATUS=1
  95     fi
  96 fi
  97 
  98 echo "Testing java provider"
  99 ${TESTJAVA}${FILESEP}bin${FILESEP}java ${TESTVMOPTS} \
 100         -classpath ${TESTCLASSES} \
 101         -Djava.security.krb5.realm=R \
 102         -Djava.security.krb5.kdc=127.0.0.1 \
 103         ${TEST}
 104 if [ $? != 0 ] ; then
 105     echo "Java provider fails"
 106     EXIT_STATUS=1
 107 fi
 108 
 109 exit ${EXIT_STATUS}