summaryrefslogtreecommitdiff
path: root/ZoneTest.java
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2025-03-24 02:08:17 +0000
committerCoprDistGit <infra@openeuler.org>2025-03-24 02:08:17 +0000
commit00306375eb6b42cc6ee45a38ba5723dbbfcb9fb5 (patch)
tree1ad6a943019dacb7b0f5bd843c3eb8deb3979dfc /ZoneTest.java
parent2169d6c3f7662d352b9cfc9b83a80a01d8c8411d (diff)
automatic import of tzdataopeneuler24.03_LTS
Diffstat (limited to 'ZoneTest.java')
-rw-r--r--ZoneTest.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/ZoneTest.java b/ZoneTest.java
new file mode 100644
index 0000000..e690728
--- /dev/null
+++ b/ZoneTest.java
@@ -0,0 +1,42 @@
+/* Smoke test to ensure that tzdb.data can be loaded.
+ Copyright (c) 2024 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/>. */
+
+
+import java.time.zone.ZoneRulesProvider;
+import java.util.Calendar;
+import java.util.GregorianCalendar;
+import java.util.Locale;
+import java.util.Set;
+import java.util.TimeZone;
+
+public class ZoneTest {
+ public static void main(String[] args) {
+ // This is what failed in OpenJDK's build.tools.cldrconverter.
+ new GregorianCalendar(TimeZone.getTimeZone("America/Los_Angeles"),
+ Locale.US).get(Calendar.YEAR);
+
+ // In some OpenJDK versions, this exercises a different parser.
+ Set<String> available = ZoneRulesProvider.getAvailableZoneIds();
+ boolean errors = false;
+ if (available.contains("ROC"))
+ System.out.println("error: ROC zone is present");
+ if (!available.contains("America/New_York"))
+ System.out.println("error: America/New_York is missing");
+ if (errors)
+ System.exit(1);
+ }
+}
+