1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
// Tags: JDK1.4
// Copyright (C) 2004 Andrew John Hughes <gnu_andrew@member.fsf.org>
// This file is part of Mauve.
// Mauve is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2, or (at your option)
// any later version.
// Mauve 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 for more details.
// You should have received a copy of the GNU General Public License
// along with Mauve; see the file COPYING. If not, write to
// the Free Software Foundation, 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA.
package gnu.testlet.java.text.NumberFormat;
import gnu.testlet.Testlet;
import gnu.testlet.TestHarness;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.util.Locale;
/**
* Class to test <code>NumberFormat</code> for the UK.
*
* @author Andrew John Hughes <gnu_andrew@member.fsf.org>
*/
public class UK implements Testlet
{
/* Locale-specific test data */
private static final Locale TEST_LOCALE = Locale.UK;
private static final String EXPECTED_GROUPED_NUMBER = "123,456.789";
private static final String EXPECTED_INT_GROUP_NUMBER = "123,457";
private static final String EXPECTED_PER_GROUP_NUMBER = "12,345,678.9%";
private static final String CURRENCY_SYMBOL = "\u00A3";
private static final boolean CURRENCY_PREFIXED = true;
private static final String DECIMAL_SEP = ".";
private static final String CURRENCY_SUFFIX = DECIMAL_SEP + "00";
private static final String GROUPED_PERCENTILE = "3,000%";
public void test(TestHarness harness)
{
NumberFormat numberFormat;
double testDouble;
long testLong;
String testString;
/********************************** NORMAL NUMBERS ****************************************/
/* Get an instance for normal numbers in the test locale */
numberFormat = NumberFormat.getNumberInstance(TEST_LOCALE);
/* Set the options on the number formatter */
setOptions(numberFormat, false);
/* Format an long-based integer using the normal format */
testLong = 30;
testString = numberFormat.format(testLong);
harness.check(testString, "30", "Long-based integer formatting with normal number format ("+
testString + ").");
/* Format an double-based integer using the normal format */
testDouble = 30;
testString = numberFormat.format(testDouble);
harness.check(testString, "30", "Double-based integer formatting with normal number format ("+
testString + ").");
/* Format an double-based fraction using the normal format */
testDouble = 1.0 / 3;
testString = numberFormat.format(testDouble);
harness.check(testString, "0.333", "Double-based fraction formatting with normal number format ("+
testString + ").");
/* Format an double-based decimal number using the normal format */
testDouble = 123456.789;
testString = numberFormat.format(testDouble);
harness.check(testString, EXPECTED_GROUPED_NUMBER, "Double-based fraction formatting with normal number format ("+
testString + ").");
/********************************** INTEGER NUMBERS ****************************************/
/* Get an instance for integer numbers in the test locale */
numberFormat = NumberFormat.getIntegerInstance(TEST_LOCALE);
/* Set the options on the number formatter */
setOptions(numberFormat, true);
/* Format an long-based integer using the integer format */
testLong = 30;
testString = numberFormat.format(testLong);
harness.check(testString, "30", "Long-based integer formatting with integer number format ("+
testString + ").");
/* Format an double-based integer using the integer format */
testDouble = 30;
testString = numberFormat.format(testDouble);
harness.check(testString, "30", "Double-based integer formatting with integer number format ("+
testString + ").");
/* Format an double-based fraction using the integer format */
testDouble = 1.0 / 3;
testString = numberFormat.format(testDouble);
harness.check(testString, "0", "Double-based fraction formatting with integer number format ("+
testString + ").");
/* Format an double-based decimal number using the integer format */
testDouble = 123456.789;
testString = numberFormat.format(testDouble);
harness.check(testString, EXPECTED_INT_GROUP_NUMBER, "Double-based fraction formatting with integer number format ("+
testString + ").");
/********************************** CURRENCIES ****************************************/
/* Get an instance for currency numbers in the test locale */
numberFormat = NumberFormat.getCurrencyInstance(TEST_LOCALE);
/* Set the options on the number formatter */
setOptions(numberFormat, false);
/* Format an long-based integer using the currency format */
testLong = 30;
testString = numberFormat.format(testLong);
if (CURRENCY_PREFIXED)
{
harness.check(testString, CURRENCY_SYMBOL + "30" + CURRENCY_SUFFIX,
"Long-based integer formatting with currency number format ("+
testString + ").");
}
else
{
harness.check(testString, "30" + CURRENCY_SUFFIX + CURRENCY_SYMBOL,
"Long-based integer formatting with currency number format ("+
testString + ").");
}
/* Format an double-based integer using the currency format */
testDouble = 30;
testString = numberFormat.format(testDouble);
if (CURRENCY_PREFIXED)
{
harness.check(testString, CURRENCY_SYMBOL + "30" + CURRENCY_SUFFIX,
"Double-based integer formatting with currency number format ("+
testString + ").");
}
else
{
harness.check(testString, "30" + CURRENCY_SUFFIX + CURRENCY_SYMBOL,
"Double-based integer formatting with currency number format ("+
testString + ").");
}
/* Format an double-based fraction using the currency format */
testDouble = 1.0 / 3;
testString = numberFormat.format(testDouble);
if (CURRENCY_PREFIXED)
{
harness.check(testString, CURRENCY_SYMBOL + "0.333", "Double-based fraction formatting with currency number format ("+
testString + ").");
}
else
{
harness.check(testString, "0.333" + CURRENCY_SYMBOL, "Double-based fraction formatting with currency number format ("+
testString + ").");
}
/* Format an double-based decimal number using the currency format */
testDouble = 123456.789;
testString = numberFormat.format(testDouble);
if (CURRENCY_PREFIXED)
{
harness.check(testString, CURRENCY_SYMBOL + EXPECTED_GROUPED_NUMBER,
"Double-based fraction formatting with currency number format ("+
testString + ").");
}
else
{
harness.check(testString, EXPECTED_GROUPED_NUMBER + CURRENCY_SYMBOL,
"Double-based fraction formatting with currency number format ("+
testString + ").");
}
/********************************** PERCENTILES ****************************************/
/* Get an instance for percentile numbers in the test locale */
numberFormat = NumberFormat.getPercentInstance(TEST_LOCALE);
/* Set the options on the number formatter */
setOptions(numberFormat, false);
/* Format an long-based integer using the percentile format */
testLong = 30;
testString = numberFormat.format(testLong);
harness.check(testString, GROUPED_PERCENTILE, "Long-based integer formatting with percentile number format ("+
testString + ").");
/* Format an double-based integer using the percentile format */
testDouble = 30;
testString = numberFormat.format(testDouble);
harness.check(testString, GROUPED_PERCENTILE, "Double-based integer formatting with percentile number format ("+
testString + ").");
/* Format an double-based fraction using the percentile format */
testDouble = 1.0 / 3;
testString = numberFormat.format(testDouble);
harness.check(testString, "33.333%", "Double-based fraction formatting with percentile number format ("+
testString + ").");
/* Format an double-based decimal number using the percentile format */
testDouble = 123456.789;
testString = numberFormat.format(testDouble);
harness.check(testString, EXPECTED_PER_GROUP_NUMBER, "Double-based fraction formatting with percentile number format ("+
testString + ").");
}
/**
* Sets the options for the formatting of numbers to receive expected output.
* The options themselves are tested elsewhere.
*
* @param format the number formatter to set up.
* @param integer true if integer formatting is being used.
*/
public void setOptions(NumberFormat formatter, boolean integer)
{
if (!integer)
{
formatter.setMaximumFractionDigits(3); /* Stop at 3 digits after the decimal point */
}
formatter.setGroupingUsed(true); /* Turn on grouping */
try
{
((DecimalFormat) formatter).setDecimalSeparatorAlwaysShown(false); /* Don't always show the decimal separator */
}
catch (ClassCastException exception)
{
/* Formatter is not an instance of the DecimalFormat subclass */
}
}
}
|