jdk/test/java/util/TimeZone/CLDRDisplayNamesTest.java
author serb
Tue, 12 Nov 2013 20:24:25 +0400
changeset 21596 0e3a39f29dbc
parent 14926 1cb5d2255451
child 23010 6dadb192ad81
permissions -rw-r--r--
8027696: Incorrect copyright header in the tests Reviewed-by: alanb, malenkov, mullan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14926
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
     1
/*
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
     2
 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
     4
 *
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
21596
0e3a39f29dbc 8027696: Incorrect copyright header in the tests
serb
parents: 14926
diff changeset
     7
 * published by the Free Software Foundation.
14926
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
     8
 *
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    13
 * accompanied this code).
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    14
 *
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    18
 *
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    21
 * questions.
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    22
 */
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    23
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    24
/*
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    25
 * @test
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    26
 * @bug 8005471
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    27
 * @run main/othervm -Djava.locale.providers=CLDR CLDRDisplayNamesTest
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    28
 * @summary Make sure that localized time zone names of CLDR are used
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    29
 * if specified.
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    30
 */
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    31
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    32
import java.util.*;
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    33
import static java.util.TimeZone.*;
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    34
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    35
public class CLDRDisplayNamesTest {
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    36
    /*
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    37
     * The first element is a language tag. The rest are localized
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    38
     * display names of America/Los_Angeles copied from the CLDR
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    39
     * resources data. If data change in CLDR, test data below will
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    40
     * need to be changed accordingly.
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    41
     *
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    42
     * Generic names are NOT tested (until they are supported by API).
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    43
     */
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    44
    static final String[][] CLDR_DATA = {
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    45
        {
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    46
            "ja-JP",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    47
            "\u30a2\u30e1\u30ea\u30ab\u592a\u5e73\u6d0b\u6a19\u6e96\u6642",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    48
            "PST",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    49
            "\u30a2\u30e1\u30ea\u30ab\u592a\u5e73\u6d0b\u590f\u6642\u9593",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    50
            "PDT",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    51
            //"\u30a2\u30e1\u30ea\u30ab\u592a\u5e73\u6d0b\u6642\u9593",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    52
            //"PT"
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    53
        },
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    54
        {
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    55
            "zh-CN",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    56
            "\u592a\u5e73\u6d0b\u6807\u51c6\u65f6\u95f4",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    57
            "PST",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    58
            "\u592a\u5e73\u6d0b\u590f\u4ee4\u65f6\u95f4",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    59
            "PDT",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    60
            //"\u7f8e\u56fd\u592a\u5e73\u6d0b\u65f6\u95f4",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    61
            //"PT"
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    62
        },
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    63
        {
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    64
            "de-DE",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    65
            "Nordamerikanische Westk\u00fcsten-Winterzeit",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    66
            "PST",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    67
            "Nordamerikanische Westk\u00fcsten-Sommerzeit",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    68
            "PDT",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    69
            //"Nordamerikanische Westk\u00fcstenzeit",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    70
            //"PT"
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    71
        },
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    72
    };
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    73
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    74
    public static void main(String[] args) {
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    75
        TimeZone tz = TimeZone.getTimeZone("America/Los_Angeles");
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    76
        int errors = 0;
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    77
        for (String[] data : CLDR_DATA) {
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    78
            Locale locale = Locale.forLanguageTag(data[0]);
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    79
            for (int i = 1; i < data.length; i++) {
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    80
                int style = ((i % 2) == 1) ? LONG : SHORT;
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    81
                boolean daylight = (i == 3 || i == 4);
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    82
                String name = tz.getDisplayName(daylight, style, locale);
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    83
                if (!data[i].equals(name)) {
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    84
                    System.err.printf("error: got '%s' expected '%s' (style=%d, daylight=%s, locale=%s)%n",
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    85
                                      name, data[i], style, daylight, locale);
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    86
                    errors++;
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    87
                }
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    88
            }
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    89
        }
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    90
        if (errors > 0) {
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    91
            throw new RuntimeException("test failed");
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    92
        }
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    93
    }
1cb5d2255451 8005471: DateFormat: Time zone info is not localized when adapter is CLDR
okutsu
parents:
diff changeset
    94
}