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
|
// |reftest| skip-if(!this.getSelfHostedValue)
const startOfUnicodeExtensions = getSelfHostedValue("startOfUnicodeExtensions");
const endOfUnicodeExtensions = getSelfHostedValue("endOfUnicodeExtensions");
const testcases = [
// Language tag without Unicode extension.
{ locale: "en", start: -1, end: 0 },
{ locale: "en-Latn", start: -1, end: 0 },
{ locale: "en-x-y", start: -1, end: 0 },
{ locale: "en-x-yz", start: -1, end: 0 },
{ locale: "en-x-u-kf", start: -1, end: 0 },
// Unicode extension sequence starts with key subtag.
// - no suceeding key or type subtags.
{ locale: "en-u-ab", start: 2, end: 7 },
{ locale: "en-u-ab-x-y", start: 2, end: 7 },
{ locale: "en-u-ab-x-yz", start: 2, end: 7 },
{ locale: "en-u-ab-x-u-kn", start: 2, end: 7 },
// - followed by key subtag.
{ locale: "en-u-ab-cd", start: 2, end: 10 },
{ locale: "en-u-ab-cd-x-y", start: 2, end: 10 },
{ locale: "en-u-ab-cd-x-yz", start: 2, end: 10 },
{ locale: "en-u-ab-cd-x-u-kn", start: 2, end: 10 },
// - followed by type subtag.
{ locale: "en-u-ab-cdef", start: 2, end: 12 },
{ locale: "en-u-ab-cdef-x-y", start: 2, end: 12 },
{ locale: "en-u-ab-cdef-x-yz", start: 2, end: 12 },
{ locale: "en-u-ab-cdef-x-y-u-kn", start: 2, end: 12 },
// Unicode extension sequence starts with attribute subtag.
// - no suceeding attribute or key subtags.
{ locale: "en-u-abc", start: 2, end: 8 },
{ locale: "en-u-abc-x-y", start: 2, end: 8 },
{ locale: "en-u-abc-x-yz", start: 2, end: 8 },
{ locale: "en-u-abc-x-y-u-kn", start: 2, end: 8 },
// - followed by attribute subtag.
{ locale: "en-u-abc-def", start: 2, end: 12 },
{ locale: "en-u-abc-def-x-y", start: 2, end: 12 },
{ locale: "en-u-abc-def-x-yz", start: 2, end: 12 },
{ locale: "en-u-abc-def-x-y-u-kn", start: 2, end: 12 },
// - followed by key subtag.
{ locale: "en-u-abc-de", start: 2, end: 11 },
{ locale: "en-u-abc-de-x-y", start: 2, end: 11 },
{ locale: "en-u-abc-de-x-yz", start: 2, end: 11 },
{ locale: "en-u-abc-de-x-y-u-kn", start: 2, end: 11 },
// - followed by two key subtags.
{ locale: "en-u-abc-de-fg", start: 2, end: 14 },
{ locale: "en-u-abc-de-fg-x-y", start: 2, end: 14 },
{ locale: "en-u-abc-de-fg-x-yz", start: 2, end: 14 },
{ locale: "en-u-abc-de-fg-x-y-u-kn", start: 2, end: 14 },
// - followed by key and type subtag.
{ locale: "en-u-abc-de-fgh", start: 2, end: 15 },
{ locale: "en-u-abc-de-fgh-x-y", start: 2, end: 15 },
{ locale: "en-u-abc-de-fgh-x-yz", start: 2, end: 15 },
{ locale: "en-u-abc-de-fgh-x-y-u-kn", start: 2, end: 15 },
// Also test when the Unicode extension doesn't start at index 2.
{ locale: "en-Latn-u-kf", start: 7, end: 12 },
{ locale: "und-u-kf", start: 3, end: 8 },
];
for (const {locale, start, end} of testcases) {
// Ensure the input is a valid language tag.
assertEqArray(Intl.getCanonicalLocales(locale), [locale]);
assertEq(startOfUnicodeExtensions(locale), start);
if (start >= 0)
assertEq(endOfUnicodeExtensions(locale, start), end);
}
if (typeof reportCompare === "function")
reportCompare(true, true);
|