2018-05-04 19:49:37 +02:00
|
|
|
// Copyright 2018 André Bargull; Igalia, S.L. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
esid: sec-intl.locale
|
|
|
|
description: >
|
|
|
|
Checks error cases for the options argument to the Locale
|
|
|
|
constructor.
|
|
|
|
info: |
|
|
|
|
Intl.Locale( tag [, options] )
|
|
|
|
|
|
|
|
...
|
|
|
|
14. Let calendar be ? GetOption(options, "calendar", "string", undefined, undefined).
|
|
|
|
...
|
|
|
|
|
|
|
|
features: [Intl.Locale]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
const validCalendarOptions = [
|
|
|
|
["abc", "en-u-ca-abc"],
|
|
|
|
["abcd", "en-u-ca-abcd"],
|
|
|
|
["abcde", "en-u-ca-abcde"],
|
|
|
|
["abcdef", "en-u-ca-abcdef"],
|
|
|
|
["abcdefg", "en-u-ca-abcdefg"],
|
|
|
|
["abcdefgh", "en-u-ca-abcdefgh"],
|
|
|
|
["12345678", "en-u-ca-12345678"],
|
|
|
|
["1234abcd", "en-u-ca-1234abcd"],
|
|
|
|
["1234abcd-abc123", "en-u-ca-1234abcd-abc123"],
|
|
|
|
];
|
|
|
|
for (const [calendar, expected] of validCalendarOptions) {
|
|
|
|
assert.sameValue(
|
2018-10-03 16:24:38 +02:00
|
|
|
new Intl.Locale('en', { calendar }).toString(),
|
2018-05-04 19:49:37 +02:00
|
|
|
expected,
|
2018-10-03 16:24:38 +02:00
|
|
|
`new Intl.Locale('en', { calendar: "${calendar}" }).toString() returns "${expected}"`
|
2018-05-04 19:49:37 +02:00
|
|
|
);
|
|
|
|
assert.sameValue(
|
2018-10-03 16:24:38 +02:00
|
|
|
new Intl.Locale('en-u-ca-gregory', { calendar }).toString(),
|
2018-05-04 19:49:37 +02:00
|
|
|
expected,
|
2018-10-03 16:24:38 +02:00
|
|
|
`new Intl.Locale('en-u-ca-gregory', { calendar: "${calendar}" }).toString() returns "${expected}"`
|
2018-05-04 19:49:37 +02:00
|
|
|
);
|
|
|
|
}
|