2021-09-29 21:48:22 +02:00
|
|
|
|
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
|
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
/*---
|
|
|
|
|
esid: sec-temporal.plaindate.from
|
|
|
|
|
description: RangeError thrown when overflow option not one of the allowed string values
|
|
|
|
|
info: |
|
|
|
|
|
sec-getoption step 10:
|
|
|
|
|
10. If _values_ is not *undefined* and _values_ does not contain an element equal to _value_, throw a *RangeError* exception.
|
|
|
|
|
sec-temporal-totemporaloverflow step 1:
|
|
|
|
|
1. Return ? GetOption(_normalizedOptions_, *"overflow"*, « String », « *"constrain"*, *"reject"* », *"constrain"*).
|
|
|
|
|
sec-temporal-totemporaldate steps 2–3:
|
|
|
|
|
2. If Type(_item_) is Object, then
|
|
|
|
|
...
|
|
|
|
|
g. Return ? DateFromFields(_calendar_, _fields_, _options_).
|
|
|
|
|
3. Perform ? ToTemporalOverflow(_options_).
|
|
|
|
|
sec-temporal.plaindate.from steps 2–3:
|
|
|
|
|
2. If Type(_item_) is Object and _item_ has an [[InitializedTemporalDate]] internal slot, then
|
|
|
|
|
a. Perform ? ToTemporalOverflow(_options_).
|
|
|
|
|
b. Return ...
|
|
|
|
|
3. Return ? ToTemporalDate(_item_, _options_).
|
|
|
|
|
features: [Temporal]
|
|
|
|
|
---*/
|
|
|
|
|
|
2021-12-29 10:11:07 +01:00
|
|
|
|
const validItems = [
|
2021-09-29 21:48:22 +02:00
|
|
|
|
new Temporal.PlainDate(2000, 5, 2),
|
|
|
|
|
{ year: 2000, month: 5, day: 2 },
|
|
|
|
|
"2000-05-02",
|
|
|
|
|
];
|
2021-12-29 10:11:07 +01:00
|
|
|
|
const invalidOverflow = [
|
|
|
|
|
"",
|
|
|
|
|
"other string",
|
|
|
|
|
"balance",
|
|
|
|
|
"CONSTRAIN",
|
|
|
|
|
"constra\u0131n",
|
|
|
|
|
];
|
|
|
|
|
validItems.forEach((item) => {
|
|
|
|
|
invalidOverflow.forEach((overflow) => {
|
|
|
|
|
assert.throws(RangeError, () => Temporal.PlainDate.from(item, { overflow }));
|
|
|
|
|
});
|
2021-09-29 21:48:22 +02:00
|
|
|
|
});
|