Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/util/Locale/Bug8001562.java
41149 views
1
/*
2
* Copyright (c) 2012, 2016, 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
/*
25
* @test
26
* @bug 8001562
27
* @summary Verify that getAvailableLocales() in locale sensitive services
28
* classes return compatible set of locales as in JDK7.
29
* @modules jdk.localedata
30
* @run main Bug8001562
31
*/
32
33
import java.text.BreakIterator;
34
import java.text.Collator;
35
import java.text.DateFormat;
36
import java.text.DateFormatSymbols;
37
import java.text.DecimalFormatSymbols;
38
import java.text.NumberFormat;
39
import java.util.Arrays;
40
import java.util.List;
41
import java.util.Locale;
42
import java.util.stream.Collectors;
43
44
public class Bug8001562 {
45
46
static final List<String> jdk7availTags = List.of(
47
"ar", "ar-AE", "ar-BH", "ar-DZ", "ar-EG", "ar-IQ", "ar-JO", "ar-KW",
48
"ar-LB", "ar-LY", "ar-MA", "ar-OM", "ar-QA", "ar-SA", "ar-SD", "ar-SY",
49
"ar-TN", "ar-YE", "be", "be-BY", "bg", "bg-BG", "ca", "ca-ES", "cs",
50
"cs-CZ", "da", "da-DK", "de", "de-AT", "de-CH", "de-DE", "de-LU", "el",
51
"el-CY", "el-GR", "en", "en-AU", "en-CA", "en-GB", "en-IE", "en-IN",
52
"en-MT", "en-NZ", "en-PH", "en-SG", "en-US", "en-ZA", "es", "es-AR",
53
"es-BO", "es-CL", "es-CO", "es-CR", "es-DO", "es-EC", "es-ES", "es-GT",
54
"es-HN", "es-MX", "es-NI", "es-PA", "es-PE", "es-PR", "es-PY", "es-SV",
55
"es-US", "es-UY", "es-VE", "et", "et-EE", "fi", "fi-FI", "fr", "fr-BE",
56
"fr-CA", "fr-CH", "fr-FR", "fr-LU", "ga", "ga-IE", "he", "he-IL",
57
"hi-IN", "hr", "hr-HR", "hu", "hu-HU", "id", "id-ID", "is", "is-IS",
58
"it", "it-CH", "it-IT", "ja", "ja-JP",
59
"ja-JP-u-ca-japanese-x-lvariant-JP", "ko", "ko-KR", "lt", "lt-LT", "lv",
60
"lv-LV", "mk", "mk-MK", "ms", "ms-MY", "mt", "mt-MT", "nl", "nl-BE",
61
"nl-NL", "no", "no-NO", "no-NO-x-lvariant-NY", "pl", "pl-PL", "pt",
62
"pt-BR", "pt-PT", "ro", "ro-RO", "ru", "ru-RU", "sk", "sk-SK", "sl",
63
"sl-SI", "sq", "sq-AL", "sr", "sr-BA", "sr-CS", "sr-Latn", "sr-Latn-BA",
64
"sr-Latn-ME", "sr-Latn-RS", "sr-ME", "sr-RS", "sv", "sv-SE", "th",
65
"th-TH", "th-TH-u-nu-thai-x-lvariant-TH", "tr", "tr-TR", "uk", "uk-UA",
66
"vi", "vi-VN", "zh", "zh-CN", "zh-HK", "zh-SG", "zh-TW");
67
static List<Locale> jdk7availLocs;
68
69
static {
70
jdk7availLocs = jdk7availTags.stream()
71
.map(Locale::forLanguageTag)
72
.collect(Collectors.toList());
73
}
74
75
public static void main(String[] args) {
76
List<Locale> avail = Arrays.asList(BreakIterator.getAvailableLocales());
77
diffLocale(BreakIterator.class, avail);
78
79
avail = Arrays.asList(Collator.getAvailableLocales());
80
diffLocale(Collator.class, avail);
81
82
avail = Arrays.asList(DateFormat.getAvailableLocales());
83
diffLocale(DateFormat.class, avail);
84
85
avail = Arrays.asList(DateFormatSymbols.getAvailableLocales());
86
diffLocale(DateFormatSymbols.class, avail);
87
88
avail = Arrays.asList(DecimalFormatSymbols.getAvailableLocales());
89
diffLocale(DecimalFormatSymbols.class, avail);
90
91
avail = Arrays.asList(NumberFormat.getAvailableLocales());
92
diffLocale(NumberFormat.class, avail);
93
94
avail = Arrays.asList(Locale.getAvailableLocales());
95
diffLocale(Locale.class, avail);
96
}
97
98
static void diffLocale(Class<?> c, List<Locale> locs) {
99
String diff = "";
100
101
System.out.printf("Only in target locales (%s.getAvailableLocales()): ", c.getSimpleName());
102
for (Locale l : locs) {
103
if (!jdk7availLocs.contains(l)) {
104
diff += "\"" + l.toLanguageTag() + "\", ";
105
}
106
}
107
System.out.println(diff);
108
diff = "";
109
110
System.out.printf("Only in JDK7 (%s.getAvailableLocales()): ", c.getSimpleName());
111
for (Locale l : jdk7availLocs) {
112
if (!locs.contains(l)) {
113
diff += "\"" + l.toLanguageTag() + "\", ";
114
}
115
}
116
System.out.println(diff);
117
118
if (diff.length() > 0) {
119
throw new RuntimeException("Above locale(s) were not included in the target available locales");
120
}
121
}
122
}
123
124