test262/test/built-ins/Temporal/PlainDate/from/overflow-invalid-string.js
Ms2ger 2c8e4c061b Temporal: Cleanup some tests.
The options-invalid.js tests were also covered by options-wrong-type.js.

The tests for add/subtract without an options argument were also covered by options-undefined.js.
2022-05-25 11:10:04 -07:00

41 lines
1.5 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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 23:
2. If Type(_item_) is Object, then
...
g. Return ? DateFromFields(_calendar_, _fields_, _options_).
3. Perform ? ToTemporalOverflow(_options_).
sec-temporal.plaindate.from steps 23:
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]
---*/
const validItems = [
new Temporal.PlainDate(2000, 5, 2),
{ year: 2000, month: 5, day: 2 },
"2000-05-02",
];
const badOverflows = ["", "CONSTRAIN", "balance", "other string", "constra\u0131n", "reject\0"];
for (const item of validItems) {
for (const overflow of badOverflows) {
assert.throws(
RangeError,
() => Temporal.PlainDate.from(item, { overflow }),
`invalid overflow ("${overflow}")`
);
}
}