summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Intl/DisplayNames/region.js
blob: 2d1bfe58d8db03017a51519c94299374212be671 (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
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
// |reftest| skip-if(!this.hasOwnProperty('Intl'))

const tests = {
  "en": {
    long: {
      "DE": "Germany",
      "GB": "United Kingdom",
      "US": "United States",
      "FR": "France",
    },
    short: {
      "GB": "UK",
      "US": "US",
    },
    narrow: {},
  },
  "de": {
    long: {
      "DE": "Deutschland",
      "GB": "Vereinigtes Königreich",
      "US": "Vereinigte Staaten",
      "FR": "Frankreich",
    },
    short: {
      "GB": "UK",
      "US": "USA",
    },
    narrow: {},
  },
  "fr": {
    long: {
      "DE": "Allemagne",
      "GB": "Royaume-Uni",
      "US": "États-Unis",
      "FR": "France",
    },
    short: {
      "GB": "R.-U.",
      "US": "É.-U.",
    },
    narrow: {},
  },
  "zh": {
    long: {
      "CN": "中国",
      "HK": "中国香港特别行政区",
    },
    short: {
      "HK": "香港"
    },
    narrow: {},
  },
  "ar": {
    long: {
      "SA": "المملكة العربية السعودية",
      "MO": "منطقة ماكاو الإدارية الخاصة",
    },
    short: {
      "MO": "مكاو",
    },
    narrow: {},
  },
};

for (let [locale, localeTests] of Object.entries(tests)) {
  for (let [style, styleTests] of Object.entries(localeTests)) {
    let dn = new Intl.DisplayNames(locale, {type: "region", style});

    let resolved = dn.resolvedOptions();
    assertEq(resolved.locale, locale);
    assertEq(resolved.style, style);
    assertEq(resolved.type, "region");
    assertEq(resolved.fallback, "code");

    let inheritedTests = {...localeTests.long, ...localeTests.short, ...localeTests.narrow};
    for (let [region, expected] of Object.entries({...inheritedTests, ...styleTests})) {
      assertEq(dn.of(region), expected);

      // Also works with objects.
      assertEq(dn.of(Object(region)), expected);
    }
  }
}

{
  let dn = new Intl.DisplayNames("en", {type: "region"});

  // Performs ToString on the input and then validates the stringified result.
  assertThrowsInstanceOf(() => dn.of(), RangeError);
  assertThrowsInstanceOf(() => dn.of(null), RangeError);
  assertThrowsInstanceOf(() => dn.of(Symbol()), TypeError);
  assertThrowsInstanceOf(() => dn.of(0), RangeError);

  // Throws an error if |code| can't be parsed as a `unicode_region_subtag` production.
  assertThrowsInstanceOf(() => dn.of("CA-"), RangeError);
  assertThrowsInstanceOf(() => dn.of("en-CA"), RangeError);
}

// Test fallback behaviour.
{
  let dn1 = new Intl.DisplayNames("en", {type: "region"});
  let dn2 = new Intl.DisplayNames("en", {type: "region", fallback: "code"});
  let dn3 = new Intl.DisplayNames("en", {type: "region", fallback: "none"});

  assertEq(dn1.resolvedOptions().fallback, "code");
  assertEq(dn2.resolvedOptions().fallback, "code");
  assertEq(dn3.resolvedOptions().fallback, "none");

  // "AA" is not a registered region code.
  assertEq(dn1.of("AA"), "AA");
  assertEq(dn2.of("AA"), "AA");
  assertEq(dn3.of("AA"), undefined);

  // The returned fallback is in canonical case.
  assertEq(dn1.of("aa"), "AA");
  assertEq(dn2.of("aa"), "AA");
  assertEq(dn3.of("aa"), undefined);

  // "998" is canonicalised to "XZ", but "XZ" has no localised names.
  assertEq(new Intl.Locale("und-998").region, "XZ");

  // Ensure we return the input and not the canonicalised input.
  assertEq(dn1.of("998"), "998");
  assertEq(dn2.of("998"), "998");
  assertEq(dn3.of("998"), undefined);

  // "XZ" should be consistent with "998".
  assertEq(dn1.of("XZ"), "XZ");
  assertEq(dn2.of("XZ"), "XZ");
  assertEq(dn3.of("XZ"), undefined);
}

// Ensure language tag canonicalisation is performed.
{
  let dn = new Intl.DisplayNames("en", {type: "region", fallback: "none"});

  assertEq(dn.of("RU"), "Russia");

  // ICU's canonicalisation supports "SU" -> "RU".
  assertEq(Intl.getCanonicalLocales("ru-SU")[0], "ru-RU");
  assertEq(dn.of("SU"), "Russia");

  // ICU's canonicalisation doesn't support "172" -> "RU".
  assertEq(Intl.getCanonicalLocales("ru-172")[0], "ru-RU");
  assertEq(dn.of("172"), "Russia");
}

// Test when case isn't canonical.
{
  let dn = new Intl.DisplayNames("en", {type: "region", fallback: "none"});

  assertEq(dn.of("IT"), "Italy");
  assertEq(dn.of("it"), "Italy");
}

if (typeof reportCompare === "function")
  reportCompare(true, true);