1#
2# Copyright (c) 2000, 2013, 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 4348370
26# @bug 8015274
27# @bug 8015276
28# @bug 8016158
29# @summary policytool not i18n compliant
30#
31# @run applet/manual=done i18n.html
32# @run shell/timeout=1200 i18n.sh
33# @run applet/manual=yesno i18n.html
34
35# set a few environment variables so that the shell-script can run stand-alone
36# in the source directory
37if [ "${TESTSRC}" = "" ] ; then
38  TESTSRC="."
39fi
40if [ "${TESTCLASSES}" = "" ] ; then
41  TESTCLASSES="."
42fi
43if [ "${TESTJAVA}" = "" ] ; then
44  echo "TESTJAVA not set.  Test cannot execute."
45  echo "FAILED!!!"
46  exit 1
47fi
48
49# set platform-dependent variables
50OS=`uname -s`
51case "$OS" in
52  SunOS | Linux | *BSD | Darwin | AIX )
53    NULL=/dev/null
54    PS=":"
55    FS="/"
56    ;;
57  CYGWIN* )
58    NULL=/dev/null
59    PS=";"
60    FS="/"
61    ;;
62  Windows* )
63    NULL=NUL
64    PS=";"
65    FS="\\"
66    ;;
67  * )
68    echo "Unrecognized system!"
69    exit 1;
70    ;;
71esac
72
73# the test code
74
75echo "HELLO!"
76
77echo "Checking for $HOME/.java.policy"
78
79# 8015274
80if [ -f $HOME/.java.policy ]; then
81    echo "You have a .java.policy file in your HOME directory"
82    echo "The file must be removed before running this test"
83    exit 1
84fi
85
86${TESTJAVA}${FS}bin${FS}keytool -genkeypair -alias hello -dname CN=Hello \
87        -storepass changeit -keypass changeit -keystore ks
88echo changeit > good
89echo badpass > bad
90${TESTJAVA}${FS}bin${FS}policytool
91
92exit $?
93
94