summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Locale/canonicalize-locale-list-take-locale.js
blob: 1f20ba61fb024c35cd88b3382f0e5a14d464f37f (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
// Copyright 2019 Google Inc.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-intl.locale
description: >
    Verifies CanonicalizeLocaleList will take Intl.Locale as locales.
info: |
    CanonicalizeLocaleList ( locales )
    3. If Type(locales) is String or locales has an [[InitializedLocale]] internal slot, then
       a. Let O be CreateArrayFromList(« locales »).

       c. iii. If Type(kValue) is Object and kValue has an [[InitializedLocale]] internal slot, then
            1. Let tag be kValue.[[Locale]].
          iv. Else,
            1. Let tag be ? ToString(kValue).
features: [Intl.Locale]
---*/

const tag = "ar";
const tag2 = "fa";
const tag3 = "zh";
const loc = new Intl.Locale(tag);

// Monkey-patching Intl.Locale
class PatchedLocale extends Intl.Locale {
  constructor(tag, options) {
    super(tag, options);
  }
  toString() {
    // this should NOT get called.
    assert(false, "toString should not be called")
  }
}
const ploc = new PatchedLocale(tag2);

// Test Intl.Locale as the only argument
let res = Intl.getCanonicalLocales(loc);
assert.sameValue(res.length, 1);
assert.sameValue(res[0], tag);

// Test Monkey-patched Intl.Locale as the only argument
res = Intl.getCanonicalLocales(ploc);
assert.sameValue(res.length, 1);
assert.sameValue(res[0], tag2);

// Test Intl.Locale and the Monkey-patched one are in
// array.
res = Intl.getCanonicalLocales([loc, tag3, ploc]);
assert.sameValue(res.length, 3);
assert.sameValue(res[0], tag);
assert.sameValue(res[1], tag3);
assert.sameValue(res[2], tag2);

reportCompare(0, 0);