1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
|
/*
* Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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 General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 6317929 6409419 8008577
* @modules jdk.localedata
* @summary Test case for tzdata2005m support for 9 locales
* @run main/othervm -Djava.locale.providers=JRE,SPI Bug6317929
*/
import java.util.Locale;
import java.util.TimeZone;
public class Bug6317929 {
static Locale[] locales2Test = new Locale[] {
new Locale("en"),
new Locale("de"),
new Locale("es"),
new Locale("fr"),
new Locale("it"),
new Locale("ja"),
new Locale("ko"),
new Locale("sv"),
new Locale("zh","CN"),
new Locale("zh","TW")
};
public static void main(String[] args) {
Locale tzLocale;
TimeZone Coral_Harbour = TimeZone.getTimeZone("America/Coral_Harbour");
tzLocale = locales2Test[0];
if (!Coral_Harbour.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("Eastern Standard Time"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"America/Coral_Harbour should be " +
"\"Eastern Standard Time\"");
tzLocale = locales2Test[1];
if (!Coral_Harbour.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("\u00d6stliche Normalzeit"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"America/Coral_Harbour should be " +
"\"\u00d6stliche Normalzeit\"");
tzLocale = locales2Test[2];
if (!Coral_Harbour.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("Hora est\u00e1ndar Oriental"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"America/Coral_Harbour should be " +
"\"Hora est\u00e1ndar Oriental\"");
tzLocale = locales2Test[3];
if (!Coral_Harbour.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("Heure normale de l'Est"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"America/Coral_Harbour should be " +
"\"Heure normale de l'Est\"");
tzLocale = locales2Test[4];
if (!Coral_Harbour.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("Ora solare USA orientale"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"America/Coral_Harbour should be " +
"\"Ora solare USA orientale\"");
tzLocale = locales2Test[5];
if (!Coral_Harbour.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("\u6771\u90e8\u6a19\u6e96\u6642"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"America/Coral_Harbour should be " +
"\"\u6771\u90e8\u6a19\u6e96\u6642\"");
tzLocale = locales2Test[6];
if (!Coral_Harbour.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("\ub3d9\ubd80 \ud45c\uc900\uc2dc"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"America/Coral_Harbour should be " +
"\"\ub3d9\ubd80 \ud45c\uc900\uc2dc\"");
tzLocale = locales2Test[7];
if (!Coral_Harbour.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("Eastern, normaltid"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"America/Coral_Harbour should be " +
"\"Eastern, normaltid\"");
tzLocale = locales2Test[8];
if (!Coral_Harbour.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("\u4e1c\u90e8\u6807\u51c6\u65f6\u95f4"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"America/Coral_Harbour should be " +
"\"\u4e1c\u90e8\u6807\u51c6\u65f6\u95f4\"");
tzLocale = locales2Test[9];
if (!Coral_Harbour.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("\u6771\u65b9\u6a19\u6e96\u6642\u9593"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"America/Coral_Harbour should be " +
"\"\u6771\u65b9\u6a19\u6e96\u6642\u9593\"");
TimeZone Currie = TimeZone.getTimeZone("Australia/Currie");
tzLocale = locales2Test[0];
if (!Currie.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("Australian Eastern Standard Time (New South Wales)"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"Australia/Currie should be " +
"\"Australian Eastern Standard Time " +
"(New South Wales)\"");
tzLocale = locales2Test[1];
if (!Currie.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("\u00D6stliche Normalzeit (New South Wales)"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"Australia/Currie should be " +
"\"\u00D6stliche Normalzeit " +
"(New South Wales)\"");
tzLocale = locales2Test[2];
if (!Currie.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("Hora est\u00e1ndar Oriental (Nueva Gales del Sur)"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"Australia/Currie should be " +
"\"Hora est\u00e1ndar Oriental " +
"(Nueva Gales del Sur)\"");
tzLocale = locales2Test[3];
if (!Currie.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("Heure normale de l'Est (Nouvelle-Galles du Sud)"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"Australia/Currie should be " +
"\"Heure normale de l'Est " +
"(Nouvelle-Galles du Sud)\"");
tzLocale = locales2Test[4];
if (!Currie.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("Ora standard dell'Australia orientale (Nuovo Galles del Sud)"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"Australia/Currie should be " +
"\"Ora standard dell'Australia orientale " +
"(Nuovo Galles del Sud)\"");
tzLocale = locales2Test[5];
if (!Currie.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("\u6771\u90E8\u6A19\u6E96\u6642" +
"(\u30CB\u30E5\u30FC\u30B5\u30A6\u30B9\u30A6\u30A7\u30FC\u30EB\u30BA)"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"Australia/Currie should be " +
"\"\u6771\u90E8\u6A19\u6E96\u6642" +
"(\u30CB\u30E5\u30FC\u30B5\u30A6\u30B9" +
"\u30A6\u30A7\u30FC\u30EB\u30BA)\"");
tzLocale = locales2Test[6];
if (!Currie.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("\uB3D9\uBD80 \uD45C\uC900\uC2DC(\uB274\uC0AC\uC6B0\uC2A4\uC6E8\uC77C\uC988)"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"Australia/Currie should be " +
"\"\uB3D9\uBD80 \uD45C\uC900\uC2DC" +
"(\uB274\uC0AC\uC6B0\uC2A4\uC6E8\uC77C\uC988)\"");
tzLocale = locales2Test[7];
if (!Currie.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("\u00D6stlig standardtid (New South Wales)"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"Australia/Currie should be " +
"\"\u00D6stlig standardtid " +
"(New South Wales)\"");
tzLocale = locales2Test[8];
if (!Currie.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("\u4E1C\u90E8\u6807\u51C6\u65F6\u95F4 (\u65B0\u5357\u5A01\u5C14\u65AF)"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"Australia/Currie should be " +
"\"\u4E1C\u90E8\u6807\u51C6\u65F6\u95F4 " +
"(\u65B0\u5357\u5A01\u5C14\u65AF)\"");
tzLocale = locales2Test[9];
if (!Currie.getDisplayName(false, TimeZone.LONG, tzLocale).equals
("\u6771\u90E8\u6A19\u6E96\u6642\u9593 (\u65B0\u5357\u5A01\u723E\u65AF)"))
throw new RuntimeException("\n" + tzLocale + ": LONG, " +
"non-daylight saving name for " +
"Australia/Currie should be " +
"\"\u6771\u90E8\u6A19\u6E96\u6642\u9593 " +
"(\u65B0\u5357\u5A01\u723E\u65AF)\"");
}
}
|