summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Intl/DateTimeFormat/day-period.js
blob: 486970e519ad5af9303775a3013330bc27e70630 (plain)
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
// |reftest| skip-if(!this.hasOwnProperty("Intl"))

const {
    Weekday, DayPeriod, Literal
} = DateTimeFormatParts;

const tests = [
    // https://unicode-org.atlassian.net/browse/ICU-20741
    {
        date: new Date("2019-01-01T12:00:00"),
        options: { dayPeriod: "long", weekday: "long", },
        locales: {
            "en-001": [Weekday("Tuesday"), Literal(", "), DayPeriod("noon")],
        },
    },

    // https://unicode-org.atlassian.net/browse/ICU-20740
    {
        date: new Date("2019-01-01T12:00:00"),
        options: { dayPeriod: "narrow", weekday: "long", },
        locales: {
            "bs-Cyrl": [Weekday("уторак"), Literal(" "), DayPeriod("подне")],
        },
    },
];

for (let {date, options, locales} of tests) {
    for (let [locale, parts] of Object.entries(locales)) {
        let dtf = new Intl.DateTimeFormat(locale, options);

        assertEq(dtf.format(date), parts.map(({value}) => value).join(""),
                 `locale=${locale}, date=${date}, options=${JSON.stringify(options)}`);

        assertDeepEq(dtf.formatToParts(date), parts,
                     `locale=${locale}, date=${date}, options=${JSON.stringify(options)}`);
    }
}

if (typeof reportCompare === "function")
    reportCompare(0, 0, "ok");