UnicodeTest.sh revision 2362
2362N/A# Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/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.
0N/A
0N/A# @test
0N/A# @bug 5030265
0N/A# @summary Verify that the J2RE can handle all legal Unicode characters
0N/A# in class names unless limited by the file system encoding
0N/A# or the encoding used for command line arguments.
0N/A# @author Norbert Lindenberg
0N/A
0N/A
0N/A# Verify directory context variables are set
0N/Aif [ "${TESTJAVA}" = "" ]
0N/Athen
0N/A echo "TESTJAVA not set. Test cannot execute. Failed."
0N/A exit 1
0N/Afi
0N/A
0N/Aif [ "${TESTSRC}" = "" ]
0N/Athen
0N/A echo "TESTSRC not set. Test cannot execute. Failed."
0N/A exit 1
0N/Afi
0N/A
0N/Aif [ "${TESTCLASSES}" = "" ]
0N/Athen
0N/A echo "TESTCLASSES not set. Test cannot execute. Failed."
0N/A exit 1
0N/Afi
0N/A
0N/AJAVAC="${TESTJAVA}"/bin/javac
0N/AJAVA="${TESTJAVA}"/bin/java
0N/AJAR="${TESTJAVA}"/bin/jar
0N/A
0N/Amkdir UnicodeTest-src UnicodeTest-classes
0N/A
0N/Aecho "creating test source files"
0N/A"$JAVAC" -d . "${TESTSRC}"/UnicodeTest.java
2078N/ACLASS_NAME=`"$JAVA" UnicodeTest | sed -e 's@\\r@@g' `
0N/A
0N/Aif [ "$CLASS_NAME" = "" ]
0N/Athen
0N/A echo "CLASS_NAME not generated. Test failed."
0N/A exit 1
0N/Afi
0N/A
0N/Aecho "building test apps"
0N/A"$JAVAC" -encoding UTF-8 -sourcepath UnicodeTest-src \
0N/A -d UnicodeTest-classes UnicodeTest-src/"${CLASS_NAME}".java || exit 1
0N/A"$JAR" -cvfm UnicodeTest.jar UnicodeTest-src/MANIFEST.MF \
0N/A -C UnicodeTest-classes . || exit 1
0N/A
0N/Aecho "running test app using class file"
0N/A"$JAVA" -classpath UnicodeTest-classes "$CLASS_NAME" || exit 1
0N/A
0N/Aecho "delete generated files with non-ASCII names"
0N/A# do it now because on Unix they may not be accessible when locale changes
0N/A# do it in Java because shells on Windows can't handle full Unicode
0N/A"$JAVAC" -d . "${TESTSRC}"/UnicodeCleanup.java || exit 1
0N/A"$JAVA" UnicodeCleanup UnicodeTest-src UnicodeTest-classes || exit 1
0N/A
0N/Aecho "running test app using newly built jar file"
0N/A"$JAVA" -jar UnicodeTest.jar || exit 1
0N/A
0N/Aecho "running test app using jar file built in Solaris UTF-8 locale"
0N/A"$JAVA" -jar "${TESTSRC}"/UnicodeTest.jar || exit 1
0N/A
0N/A# if we can switch to a C locale, then test whether jar files with
0N/A# non-ASCII characters in the manifest still work in this crippled
0N/A# environment
0N/Aif test -n "`locale -a 2>/dev/null | grep '^C$'`"
0N/Athen
0N/A LC_ALL=C
0N/A export LC_ALL
0N/A
0N/A echo "running test app using newly built jar file in C locale"
0N/A "$JAVA" -jar UnicodeTest.jar || exit 1
0N/A
0N/A echo "running test app using premade jar file in C locale"
0N/A "$JAVA" -jar "${TESTSRC}"/UnicodeTest.jar || exit 1
0N/Afi
0N/A
0N/Aexit 0
0N/A