1 #!/bin/sh
   2 
   3 #
   4 # Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.
   5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   6 #
   7 # This code is free software; you can redistribute it and/or modify it
   8 # under the terms of the GNU General Public License version 2 only, as
   9 # published by the Free Software Foundation.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 # @test
  27 # @bug 6457422 6931562
  28 # @run shell RSAEncryptDecrypt.sh
  29 # @summary Confirm that plaintext can be encrypted and then decrypted using the
  30 #          RSA cipher in the SunMSCAPI crypto provider. NOTE: The RSA cipher is 
  31 #          absent from the SunMSCAPI provider in OpenJDK builds.
  32 
  33 # set a few environment variables so that the shell-script can run stand-alone
  34 # in the source directory
  35 if [ "${TESTSRC}" = "" ] ; then
  36    TESTSRC="."
  37 fi
  38 
  39 if [ "${TESTCLASSES}" = "" ] ; then
  40    TESTCLASSES="."
  41 fi
  42 
  43 if [ "${TESTJAVA}" = "" ] ; then
  44    echo "TESTJAVA not set.  Test cannot execute."
  45    echo "FAILED!!!"
  46    exit 1
  47 fi
  48 
  49 
  50 OS=`uname -s`
  51 case "$OS" in
  52     Windows* | CYGWIN* )
  53 
  54         #
  55         # Workaround for 6449799
  56         #
  57         if [ "${SystemDrive}" = "" ]; then
  58             SystemRoot="`dosname "${SystemRoot}"`"
  59             export SystemRoot
  60             SystemDrive="`echo ${SystemRoot} | cut -d'/' -f1`"
  61             export SystemDrive
  62         fi
  63 
  64         # 'uname -m' does not give us enough information -
  65         #  should rely on $PROCESSOR_IDENTIFIER (as is done in
  66         #  Defs-windows.gmk), but JTREG does not pass this env variable
  67         #  when executing a shell script.
  68         #
  69         # execute test program - rely on it to exit if platform
  70         # unsupported
  71 
  72         ${TESTJAVA}/bin/javac ${TESTTOOLVMOPTS} ${TESTJAVACOPTS} -d . ${TESTSRC}\\RSAEncryptDecrypt.java
  73         ${TESTJAVA}/bin/java ${TESTVMOPTS} ${TESTJAVAOPTS} RSAEncryptDecrypt
  74         exit
  75         ;;
  76 
  77     * )
  78         echo "This test is not intended for '$OS' - passing test"
  79         exit 0
  80         ;;
  81 esac
  82