jdk/test/java/util/Currency/PropertiesTest.sh
author alanb
Sun, 02 Dec 2012 16:37:31 +0000
changeset 14697 6ed46ffc2d33
parent 13790 5b29e3921008
child 14786 a9f61e0cbe61
permissions -rw-r--r--
8003846: Override mechanism for currency data should not require creating currency.properties in java.home Reviewed-by: naoto
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#!/bin/sh
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
     2
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
     3
# Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved.
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
     4
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
     5
#
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
     6
# This code is free software; you can redistribute it and/or modify it
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
     7
# under the terms of the GNU General Public License version 2 only, as
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
     8
# published by the Free Software Foundation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
#
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    10
# This code is distributed in the hope that it will be useful, but WITHOUT
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    11
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    12
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    13
# version 2 for more details (a copy is included in the LICENSE file that
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    14
# accompanied this code).
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    15
#
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    16
# You should have received a copy of the GNU General Public License version
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    17
# 2 along with this work; if not, write to the Free Software Foundation,
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    18
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    19
#
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    20
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    21
# or visit www.oracle.com if you need additional information or have any
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    22
# questions.
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    23
#
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    24
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
# @test
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    26
# @bug 6332666 7180362 8003846
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
# @summary tests the capability of replacing the currency data with user
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#     specified currency properties file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
# @build PropertiesTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
# @run shell/timeout=600 PropertiesTest.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
if [ "${TESTSRC}" = "" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
  echo "TESTSRC not set.  Test cannot execute.  Failed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
  exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
echo "TESTSRC=${TESTSRC}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
if [ "${TESTJAVA}" = "" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
  echo "TESTJAVA not set.  Test cannot execute.  Failed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
  exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
echo "TESTJAVA=${TESTJAVA}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
if [ "${TESTCLASSES}" = "" ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
  echo "TESTCLASSES not set.  Test cannot execute.  Failed."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
  exit 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
echo "TESTCLASSES=${TESTCLASSES}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
echo "CLASSPATH=${CLASSPATH}"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
# set platform-dependent variables
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
OS=`uname -s`
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
case "$OS" in
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 4662
diff changeset
    55
  SunOS | Linux | Darwin )
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    PS=":"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    FS="/"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    ;;
4662
49b8cbe45e6a 6911108: These tests do not work with CYGWIN: java/util
ohair
parents: 2
diff changeset
    59
  Windows* | CYGWIN* )
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    PS=";"
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    61
    FS="/"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
  * )
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    echo "Unrecognized system!"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    exit 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    ;;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
esac
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    69
failures=0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    71
run() {
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    72
    echo ''
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    73
    sh -xc "${TESTJAVA}${FS}bin${FS}java -cp ${TESTCLASSES} $*" 2>&1
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    74
    if [ $? != 0 ]; then failures=`expr $failures + 1`; fi
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    75
}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    77
PROPS=${TESTSRC}${FS}currency.properties
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    78
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    79
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    80
# Dump built-in currency data
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    82
run PropertiesTest -d dump1
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    83
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    84
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    85
# Dump built-in currency data + overrides in properties file specified
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    86
# by system property.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    88
run -Djava.util.currency.data=${PROPS} PropertiesTest -d dump2
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    89
run PropertiesTest -c dump1 dump2 ${PROPS}
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    90
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    91
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    92
# Dump built-in currency data + overrides in properties file copied into
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
    93
# JRE image.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
# copy the test properties file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
COPIED=0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
if [ -w $TESTJAVA ]
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 4662
diff changeset
    98
then
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
  WRITABLEJDK=$TESTJAVA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
else
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 4662
diff changeset
   101
  WRITABLEJDK=.${FS}testjava
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
  cp -r $TESTJAVA $WRITABLEJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
  COPIED=1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
if [ -d ${WRITABLEJDK}${FS}jre ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
  PROPLOCATION=${WRITABLEJDK}${FS}jre${FS}lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
  PROPLOCATION=${WRITABLEJDK}${FS}lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
fi
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   112
cp ${PROPS} $PROPLOCATION
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
# run
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   115
echo ''
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   116
sh -xc "${WRITABLEJDK}${FS}bin${FS}java -cp ${TESTCLASSES} PropertiesTest -d dump3"
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   117
if [ $? != 0 ]; then failures=`expr $failures + 1`; fi
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
# Cleanup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
rm -f ${PROPLOCATION}${FS}currency.properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
if [ $COPIED -eq 1 ]
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
  rm -rf $WRITABLEJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
14697
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   126
# compare the two dump files
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   127
run PropertiesTest -c dump1 dump3 ${PROPS}
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   128
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   129
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   130
# Results
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   131
echo ''
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   132
if [ $failures -gt 0 ];
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   133
  then echo "$failures tests failed";
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   134
  else echo "All tests passed"; fi
6ed46ffc2d33 8003846: Override mechanism for currency data should not require creating currency.properties in java.home
alanb
parents: 13790
diff changeset
   135
exit $failures