blob: ebd611101f4d07a21878fcef33a04165d34251df [file] [log] [blame]
// Copyright (C) 2020 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Temporal.PlainTime.prototype.subtract throws a RangeError if any value in a property bag is -Infinity
esid: sec-temporal.plaintime.prototype.subtract
features: [Temporal]
---*/
const overflows = ["constrain", "reject"];
const fields = ["years", "months", "weeks", "days", "hours", "minutes", "seconds", "milliseconds", "microseconds", "nanoseconds"];
const instance = Temporal.PlainTime.from({ hour: 12, minute: 34, second: 56, millisecond: 987, microsecond: 654, nanosecond: 321 });
overflows.forEach((overflow) => {
fields.forEach((field) => {
assert.throws(RangeError, () => instance.subtract({ [field]: -Infinity }, { overflow }));
});
});
let calls = 0;
const obj = {
valueOf() {
calls++;
return -Infinity;
}
};
overflows.forEach((overflow) => {
fields.forEach((field) => {
calls = 0;
assert.throws(RangeError, () => instance.subtract({ [field]: obj }, { overflow }));
assert.sameValue(calls, 1, "it fails after fetching the primitive value");
});
});