2007-12-01 00:00:00 +00:00
|
|
|
#
|
2013-12-26 20:04:16 +00:00
|
|
|
# Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
|
|
|
# This code is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License version 2 only, as
|
|
|
|
# published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
# version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
# accompanied this code).
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License version
|
|
|
|
# 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
#
|
2010-05-25 22:58:33 +00:00
|
|
|
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
# or visit www.oracle.com if you need additional information or have any
|
|
|
|
# questions.
|
2007-12-01 00:00:00 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# @test
|
|
|
|
# @bug 4906940
|
|
|
|
# @summary Add -providerPath option for keytool allowing one to specify
|
|
|
|
# an additional classpath to search for providers.
|
|
|
|
# @author Andrew Fan
|
|
|
|
#
|
|
|
|
# @run build DummyProvider
|
|
|
|
# @run shell AltProviderPath.sh
|
|
|
|
# set a few environment variables so that the shell-script can run stand-alone
|
|
|
|
# in the source directory
|
|
|
|
if [ "${TESTSRC}" = "" ] ; then
|
|
|
|
TESTSRC="."
|
|
|
|
fi
|
|
|
|
if [ "${TESTCLASSES}" = "" ] ; then
|
|
|
|
TESTCLASSES="."
|
|
|
|
fi
|
|
|
|
if [ "${TESTJAVA}" = "" ] ; then
|
|
|
|
echo "TESTJAVA not set. Test cannot execute."
|
|
|
|
echo "FAILED!!!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# set platform-dependent variables
|
|
|
|
OS=`uname -s`
|
|
|
|
case "$OS" in
|
2014-01-17 20:54:30 +00:00
|
|
|
SunOS | Linux | Darwin | AIX )
|
2007-12-01 00:00:00 +00:00
|
|
|
NULL=/dev/null
|
|
|
|
PS=":"
|
|
|
|
FS="/"
|
|
|
|
;;
|
2009-08-07 00:56:59 +00:00
|
|
|
CYGWIN* )
|
|
|
|
NULL=/dev/null
|
|
|
|
PS=";"
|
|
|
|
FS="/"
|
|
|
|
;;
|
2007-12-01 00:00:00 +00:00
|
|
|
Windows_* )
|
|
|
|
NULL=NUL
|
|
|
|
PS=";"
|
|
|
|
FS="\\"
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
echo "Unrecognized operating system!"
|
|
|
|
exit 1;
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# the test code
|
|
|
|
#genkey
|
2009-08-07 00:56:59 +00:00
|
|
|
${TESTJAVA}${FS}bin${FS}keytool -genkey -v -alias dummyTestCA \
|
|
|
|
-keyalg "RSA" -keysize 1024 -sigalg "ShA1WithRSA" \
|
|
|
|
-dname "cn=Dummy Test CA, ou=JSN, o=JavaSoft, c=US" -validity 3650 \
|
|
|
|
-keypass storepass -keystore keystoreCA.dks -storepass storepass \
|
2013-02-13 19:40:51 +00:00
|
|
|
-storetype "dummyks" -provider "org.test.dummy.DummyProvider" \
|
2009-08-07 00:56:59 +00:00
|
|
|
-providerPath ${TESTCLASSES}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-03-06 20:34:38 +00:00
|
|
|
if [ $? -ne 0 ]; then
|
2007-12-01 00:00:00 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#Change keystore password
|
2009-08-07 00:56:59 +00:00
|
|
|
${TESTJAVA}${FS}bin${FS}keytool -storepasswd -new storepass2 \
|
2013-02-13 19:40:51 +00:00
|
|
|
-keystore keystoreCA.dks -storetype "dummyks" -storepass storepass \
|
2009-08-07 00:56:59 +00:00
|
|
|
-provider "org.test.dummy.DummyProvider" -providerPath ${TESTCLASSES}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-03-06 20:34:38 +00:00
|
|
|
if [ $? -ne 0 ]; then
|
2007-12-01 00:00:00 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
#Change keystore key password
|
2009-08-07 00:56:59 +00:00
|
|
|
${TESTJAVA}${FS}bin${FS}keytool -keypasswd -alias "dummyTestCA" \
|
|
|
|
-keypass storepass -new keypass -keystore keystoreCA.dks \
|
2013-02-13 19:40:51 +00:00
|
|
|
-storetype "dummyks" -storepass storepass2 \
|
2009-08-07 00:56:59 +00:00
|
|
|
-provider "org.test.dummy.DummyProvider" -providerPath ${TESTCLASSES}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-03-06 20:34:38 +00:00
|
|
|
if [ $? -ne 0 ]; then
|
2007-12-01 00:00:00 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#Export certificate
|
2009-08-07 00:56:59 +00:00
|
|
|
${TESTJAVA}${FS}bin${FS}keytool -v -export -rfc -alias "dummyTestCA" \
|
2013-02-13 19:40:51 +00:00
|
|
|
-file "dummyTestCA.der" -keystore keystoreCA.dks -storetype "dummyks" \
|
2009-08-07 00:56:59 +00:00
|
|
|
-storepass storepass2 -provider "org.test.dummy.DummyProvider" \
|
|
|
|
-providerPath ${TESTCLASSES}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-03-06 20:34:38 +00:00
|
|
|
if [ $? -ne 0 ]; then
|
2007-12-01 00:00:00 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#list keystore
|
2009-08-07 00:56:59 +00:00
|
|
|
${TESTJAVA}${FS}bin${FS}keytool -v -list -keystore keystoreCA.dks \
|
2013-02-13 19:40:51 +00:00
|
|
|
-storetype "dummyks" -storepass storepass2 \
|
2009-08-07 00:56:59 +00:00
|
|
|
-provider "org.test.dummy.DummyProvider" -providerPath ${TESTCLASSES}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2012-03-06 20:34:38 +00:00
|
|
|
if [ $? -ne 0 ]; then
|
2007-12-01 00:00:00 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|