< prev index next >

test/jdk/sun/util/calendar/zi/TestZoneInfo310.java

Print this page


   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 8007572 8008161 8157792
  27  * @summary Test whether the TimeZone generated from JSR310 tzdb is the same
  28  * as the one from the tz data from javazic
  29  * @modules java.base/sun.util.calendar:+open
  30  * @build BackEnd Checksum DayOfWeek Gen GenDoc Main Mappings Month
  31  *        Rule RuleDay RuleRec Simple TestZoneInfo310 Time Timezone
  32  *        TzIDOldMapping Zone ZoneInfoFile ZoneInfoOld ZoneRec Zoneinfo
  33  * @run main TestZoneInfo310
  34  */
  35 
  36 import java.io.File;
  37 import java.lang.reflect.*;
  38 import java.nio.file.*;
  39 import java.util.*;
  40 import java.util.regex.*;
  41 import java.time.zone.*;
  42 import java.time.ZoneId;
  43 
  44 public class TestZoneInfo310 {
  45 
  46     public static void main(String[] args) throws Throwable {


 153         Arrays.sort(alias_new);
 154 
 155         t0 = System.currentTimeMillis();
 156         for (String zid : zids_new) {
 157             TimeZone.getTimeZone(zid);
 158         }
 159         t1 = System.currentTimeMillis();
 160         System.out.printf("NEW.TotalTZ()=%d (ms)%n", t1 - t0);
 161 
 162         if (!Arrays.equals(zids_old, zids_new)) {
 163             throw new RuntimeException("  FAILED:  availableIds don't match");
 164         }
 165 
 166         if (!Arrays.equals(alias_old, alias_new)) {
 167             throw new RuntimeException("  FAILED:  aliases don't match");
 168         }
 169 
 170         for (String zid : zids_new) {
 171             ZoneInfoOld zi = toZoneInfoOld(TimeZone.getTimeZone(zid));
 172             ZoneInfoOld ziOLD = (ZoneInfoOld)ZoneInfoOld.getTimeZone(zid);









 173             if (! zi.equalsTo(ziOLD)) {
 174                 System.out.println(zi.diffsTo(ziOLD));
 175                 throw new RuntimeException("  FAILED:  " + zid);
 176             }
 177         }
 178         delete(fZidir);
 179 
 180         // test tzdb version
 181         if (!ver.equals(sun.util.calendar.ZoneInfoFile.getVersion())) {
 182             System.out.printf("  FAILED:  ver=%s, expected=%s%n",
 183                               sun.util.calendar.ZoneInfoFile.getVersion(), ver);
 184             throw new RuntimeException("Version test failed");
 185         }
 186 
 187         // test getAvailableIDs(raw);
 188         zids_new = TimeZone.getAvailableIDs(-8 * 60 * 60 * 1000);
 189         //Arrays.sort(zids_new);
 190         zids_old = ZoneInfoOld.getAvailableIDs(-8 * 60 * 60 * 1000);
 191         if (!Arrays.equals(zids_new, zids_old)) {
 192             System.out.println("------------------------");


   1 /*
   2  * Copyright (c) 2012, 2019, 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 8007572 8008161 8157792 8224560
  27  * @summary Test whether the TimeZone generated from JSR310 tzdb is the same
  28  * as the one from the tz data from javazic
  29  * @modules java.base/sun.util.calendar:+open
  30  * @build BackEnd Checksum DayOfWeek Gen GenDoc Main Mappings Month
  31  *        Rule RuleDay RuleRec Simple TestZoneInfo310 Time Timezone
  32  *        TzIDOldMapping Zone ZoneInfoFile ZoneInfoOld ZoneRec Zoneinfo
  33  * @run main TestZoneInfo310
  34  */
  35 
  36 import java.io.File;
  37 import java.lang.reflect.*;
  38 import java.nio.file.*;
  39 import java.util.*;
  40 import java.util.regex.*;
  41 import java.time.zone.*;
  42 import java.time.ZoneId;
  43 
  44 public class TestZoneInfo310 {
  45 
  46     public static void main(String[] args) throws Throwable {


 153         Arrays.sort(alias_new);
 154 
 155         t0 = System.currentTimeMillis();
 156         for (String zid : zids_new) {
 157             TimeZone.getTimeZone(zid);
 158         }
 159         t1 = System.currentTimeMillis();
 160         System.out.printf("NEW.TotalTZ()=%d (ms)%n", t1 - t0);
 161 
 162         if (!Arrays.equals(zids_old, zids_new)) {
 163             throw new RuntimeException("  FAILED:  availableIds don't match");
 164         }
 165 
 166         if (!Arrays.equals(alias_old, alias_new)) {
 167             throw new RuntimeException("  FAILED:  aliases don't match");
 168         }
 169 
 170         for (String zid : zids_new) {
 171             ZoneInfoOld zi = toZoneInfoOld(TimeZone.getTimeZone(zid));
 172             ZoneInfoOld ziOLD = (ZoneInfoOld)ZoneInfoOld.getTimeZone(zid);
 173             /*
 174              * Temporary ignoring the failing TimeZones which are having zone
 175              * rules defined till year 2037 and/or above and have negative DST
 176              * save time in IANA tzdata. This bug is tracked via JDK-8223388.
 177              */
 178             if (zid.equals("Africa/Casablanca") || zid.equals("Africa/El_Aaiun")
 179                 || zid.equals("Asia/Tehran") || zid.equals("Iran")) {
 180                 continue;
 181             }
 182             if (! zi.equalsTo(ziOLD)) {
 183                 System.out.println(zi.diffsTo(ziOLD));
 184                 throw new RuntimeException("  FAILED:  " + zid);
 185             }
 186         }
 187         delete(fZidir);
 188 
 189         // test tzdb version
 190         if (!ver.equals(sun.util.calendar.ZoneInfoFile.getVersion())) {
 191             System.out.printf("  FAILED:  ver=%s, expected=%s%n",
 192                               sun.util.calendar.ZoneInfoFile.getVersion(), ver);
 193             throw new RuntimeException("Version test failed");
 194         }
 195 
 196         // test getAvailableIDs(raw);
 197         zids_new = TimeZone.getAvailableIDs(-8 * 60 * 60 * 1000);
 198         //Arrays.sort(zids_new);
 199         zids_old = ZoneInfoOld.getAvailableIDs(-8 * 60 * 60 * 1000);
 200         if (!Arrays.equals(zids_new, zids_old)) {
 201             System.out.println("------------------------");


< prev index next >