2022-08-29 00:31:15 +00:00
|
|
|
/* TestTranslations -- Ensure translations are available for new timezones
|
|
|
|
Copyright (C) 2022 Red Hat, Inc.
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as
|
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2022-10-26 17:35:21 +00:00
|
|
|
import java.text.DateFormatSymbols;
|
|
|
|
|
|
|
|
import java.time.ZoneId;
|
|
|
|
import java.time.format.TextStyle;
|
|
|
|
|
2022-08-29 00:31:15 +00:00
|
|
|
import java.util.Arrays;
|
2022-10-26 17:35:21 +00:00
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
2022-08-29 00:31:15 +00:00
|
|
|
import java.util.Locale;
|
2022-10-26 17:35:21 +00:00
|
|
|
import java.util.Objects;
|
|
|
|
import java.util.TimeZone;
|
2022-08-29 00:31:15 +00:00
|
|
|
|
|
|
|
public class TestTranslations {
|
2022-10-26 17:35:21 +00:00
|
|
|
|
|
|
|
private static Map<Locale,String[]> KYIV;
|
|
|
|
|
|
|
|
static {
|
|
|
|
Map<Locale,String[]> map = new HashMap<Locale,String[]>();
|
|
|
|
map.put(Locale.US, new String[] { "Eastern European Standard Time", "GMT+02:00", "EET",
|
|
|
|
"Eastern European Summer Time", "GMT+03:00", "EEST",
|
|
|
|
"Eastern European Time", "GMT+02:00", "EET"});
|
|
|
|
map.put(Locale.FRANCE, new String[] { "heure normale d\u2019Europe de l\u2019Est", "UTC+02:00", "EET",
|
|
|
|
"heure d\u2019\u00e9t\u00e9 d\u2019Europe de l\u2019Est", "UTC+03:00", "EEST",
|
|
|
|
"heure d\u2019Europe de l\u2019Est", "UTC+02:00", "EET"});
|
|
|
|
map.put(Locale.GERMANY, new String[] { "Osteurop\u00e4ische Normalzeit", "OEZ", "OEZ",
|
|
|
|
"Osteurop\u00e4ische Sommerzeit", "OESZ", "OESZ",
|
|
|
|
"Osteurop\u00e4ische Zeit", "OEZ", "OEZ"});
|
|
|
|
KYIV = Collections.unmodifiableMap(map);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-29 00:31:15 +00:00
|
|
|
public static void main(String[] args) {
|
2022-10-26 17:35:21 +00:00
|
|
|
if (args.length < 1) {
|
|
|
|
System.err.println("Test must be started with the name of the locale provider.");
|
|
|
|
System.exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
String localeProvider = args[0];
|
|
|
|
System.out.println("Checking sanity of full zone string set...");
|
|
|
|
boolean invalid = Arrays.stream(Locale.getAvailableLocales())
|
|
|
|
.peek(l -> System.out.println("Locale: " + l))
|
|
|
|
.map(l -> DateFormatSymbols.getInstance(l).getZoneStrings())
|
|
|
|
.flatMap(zs -> Arrays.stream(zs))
|
|
|
|
.flatMap(names -> Arrays.stream(names))
|
|
|
|
.filter(name -> Objects.isNull(name) || name.isEmpty())
|
|
|
|
.findAny()
|
|
|
|
.isPresent();
|
|
|
|
if (invalid) {
|
|
|
|
System.err.println("Zone string for a locale returned null or empty string");
|
|
|
|
System.exit(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Locale l : KYIV.keySet()) {
|
|
|
|
String[] expected = KYIV.get(l);
|
|
|
|
for (String id : new String[] { "Europe/Kiev", "Europe/Kyiv", "Europe/Uzhgorod", "Europe/Zaporozhye" }) {
|
|
|
|
String expectedShortStd = null;
|
|
|
|
String expectedShortDST = null;
|
|
|
|
String expectedShortGen = null;
|
|
|
|
|
|
|
|
System.out.printf("Checking locale %s for %s...\n", l, id);
|
|
|
|
|
|
|
|
if ("JRE".equals(localeProvider)) {
|
|
|
|
expectedShortStd = expected[2];
|
|
|
|
expectedShortDST = expected[5];
|
|
|
|
expectedShortGen = expected[8];
|
|
|
|
} else if ("CLDR".equals(localeProvider)) {
|
|
|
|
expectedShortStd = expected[1];
|
|
|
|
expectedShortDST = expected[4];
|
|
|
|
expectedShortGen = expected[7];
|
|
|
|
} else {
|
|
|
|
System.err.printf("Invalid locale provider %s\n", localeProvider);
|
|
|
|
System.exit(3);
|
|
|
|
}
|
|
|
|
System.out.printf("Locale Provider is %s, using short values %s, %s and %s\n",
|
|
|
|
localeProvider, expectedShortStd, expectedShortDST, expectedShortGen);
|
|
|
|
|
|
|
|
String longStd = TimeZone.getTimeZone(id).getDisplayName(false, TimeZone.LONG, l);
|
|
|
|
String shortStd = TimeZone.getTimeZone(id).getDisplayName(false, TimeZone.SHORT, l);
|
|
|
|
String longDST = TimeZone.getTimeZone(id).getDisplayName(true, TimeZone.LONG, l);
|
|
|
|
String shortDST = TimeZone.getTimeZone(id).getDisplayName(true, TimeZone.SHORT, l);
|
|
|
|
String longGen = ZoneId.of(id).getDisplayName(TextStyle.FULL, l);
|
|
|
|
String shortGen = ZoneId.of(id).getDisplayName(TextStyle.SHORT, l);
|
|
|
|
|
|
|
|
if (!expected[0].equals(longStd)) {
|
|
|
|
System.err.printf("Long standard display name for %s in %s was %s, expected %s\n",
|
|
|
|
id, l, longStd, expected[0]);
|
|
|
|
System.exit(4);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!expectedShortStd.equals(shortStd)) {
|
|
|
|
System.err.printf("Short standard display name for %s in %s was %s, expected %s\n",
|
|
|
|
id, l, shortStd, expectedShortStd);
|
|
|
|
System.exit(5);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!expected[3].equals(longDST)) {
|
|
|
|
System.err.printf("Long DST display name for %s in %s was %s, expected %s\n",
|
|
|
|
id, l, longDST, expected[3]);
|
|
|
|
System.exit(6);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!expectedShortDST.equals(shortDST)) {
|
|
|
|
System.err.printf("Short DST display name for %s in %s was %s, expected %s\n",
|
|
|
|
id, l, shortDST, expectedShortDST);
|
|
|
|
System.exit(7);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!expected[6].equals(longGen)) {
|
|
|
|
System.err.printf("Long standard display name for %s in %s was %s, expected %s\n",
|
|
|
|
id, l, longGen, expected[6]);
|
|
|
|
System.exit(8);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!expectedShortGen.equals(shortGen)) {
|
|
|
|
System.err.printf("Short generic display name for %s in %s was %s, expected %s\n",
|
|
|
|
id, l, shortGen, expectedShortGen);
|
|
|
|
System.exit(9);
|
|
|
|
}
|
2022-08-29 00:31:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|