2
|
1 |
/*
|
5506
|
2 |
* Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
|
2
|
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 |
*
|
5506
|
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.
|
2
|
22 |
*/
|
|
23 |
/*
|
|
24 |
*
|
|
25 |
*/
|
|
26 |
|
|
27 |
import java.text.*;
|
|
28 |
import java.util.*;
|
|
29 |
import sun.util.*;
|
|
30 |
import sun.util.resources.*;
|
|
31 |
|
|
32 |
public class DecimalFormatSymbolsProviderTest extends ProviderTest {
|
|
33 |
|
|
34 |
com.foo.DecimalFormatSymbolsProviderImpl dfsp = new com.foo.DecimalFormatSymbolsProviderImpl();
|
|
35 |
List<Locale> availloc = Arrays.asList(DecimalFormatSymbols.getAvailableLocales());
|
|
36 |
List<Locale> providerloc = Arrays.asList(dfsp.getAvailableLocales());
|
|
37 |
List<Locale> jreloc = Arrays.asList(LocaleData.getAvailableLocales());
|
|
38 |
|
|
39 |
public static void main(String[] s) {
|
|
40 |
new DecimalFormatSymbolsProviderTest();
|
|
41 |
}
|
|
42 |
|
|
43 |
DecimalFormatSymbolsProviderTest() {
|
|
44 |
availableLocalesTest();
|
|
45 |
objectValidityTest();
|
|
46 |
}
|
|
47 |
|
|
48 |
void availableLocalesTest() {
|
|
49 |
Set<Locale> localesFromAPI = new HashSet<Locale>(availloc);
|
|
50 |
Set<Locale> localesExpected = new HashSet<Locale>(jreloc);
|
|
51 |
localesExpected.addAll(providerloc);
|
|
52 |
if (localesFromAPI.equals(localesExpected)) {
|
|
53 |
System.out.println("availableLocalesTest passed.");
|
|
54 |
} else {
|
|
55 |
throw new RuntimeException("availableLocalesTest failed");
|
|
56 |
}
|
|
57 |
}
|
|
58 |
|
|
59 |
void objectValidityTest() {
|
|
60 |
|
|
61 |
for (Locale target: availloc) {
|
|
62 |
// pure JRE implementation
|
|
63 |
ResourceBundle rb = LocaleData.getNumberFormatData(target);
|
|
64 |
boolean jreSupportsLocale = jreloc.contains(target);
|
|
65 |
|
|
66 |
// JRE string arrays
|
|
67 |
String[] jres = new String[2];
|
|
68 |
if (jreSupportsLocale) {
|
|
69 |
try {
|
|
70 |
String[] tmp = rb.getStringArray("NumberElements");
|
|
71 |
jres[0] = tmp[9]; // infinity
|
|
72 |
jres[1] = tmp[10]; // NaN
|
|
73 |
} catch (MissingResourceException mre) {}
|
|
74 |
}
|
|
75 |
|
|
76 |
// result object
|
|
77 |
DecimalFormatSymbols dfs = DecimalFormatSymbols.getInstance(target);
|
|
78 |
String[] result = new String[2];
|
|
79 |
result[0] = dfs.getInfinity();
|
|
80 |
result[1] = dfs.getNaN();
|
|
81 |
|
|
82 |
// provider's object (if any)
|
|
83 |
DecimalFormatSymbols providersDfs= null;
|
|
84 |
String[] providers = new String[2];
|
|
85 |
if (providerloc.contains(target)) {
|
|
86 |
providersDfs = dfsp.getInstance(target);
|
|
87 |
providers[0] = providersDfs.getInfinity();
|
|
88 |
providers[1] = providersDfs.getNaN();
|
|
89 |
}
|
|
90 |
|
|
91 |
for (int i = 0; i < result.length; i ++) {
|
|
92 |
checkValidity(target, jres[i], providers[i], result[i], jreSupportsLocale);
|
|
93 |
}
|
|
94 |
}
|
|
95 |
}
|
|
96 |
}
|