mirror of https://github.com/tc39/test262.git
23 lines
1020 B
JavaScript
23 lines
1020 B
JavaScript
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: Throws if eraYear in the property bag is Infinity or -Infinity
|
|
esid: sec-temporal.zoneddatetime.from
|
|
includes: [compareArray.js, temporalHelpers.js]
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const base = { era: "ad", month: 5, day: 2, hour: 15, timeZone: "UTC", calendar: "gregory" };
|
|
|
|
[Infinity, -Infinity].forEach((inf) => {
|
|
["constrain", "reject"].forEach((overflow) => {
|
|
assert.throws(RangeError, () => Temporal.ZonedDateTime.from({ ...base, eraYear: inf }, { overflow }), `eraYear property cannot be ${inf} (overflow ${overflow}`);
|
|
|
|
const calls = [];
|
|
const obj = TemporalHelpers.toPrimitiveObserver(calls, inf, "eraYear");
|
|
assert.throws(RangeError, () => Temporal.ZonedDateTime.from({ ...base, eraYear: obj }, { overflow }));
|
|
assert.compareArray(calls, ["get eraYear.valueOf", "call eraYear.valueOf"], "it fails after fetching the primitive value");
|
|
});
|
|
});
|