Temporal: Add tests for mixed signs in DifferenceTemporalPlainDateTime

With test cases kindly provided by Anba, this adds test coverage for the
abrupt completion in the last step of DifferenceTemporalPlainDateTime,
where the resulting Duration components have mixed signs.

See: https://github.com/tc39/proposal-temporal/issues/2783
This commit is contained in:
Philip Chimento 2024-02-23 17:25:45 -08:00 committed by Ms2ger
parent c8a876b1d9
commit c4f5778671
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,26 @@
// Copyright (C) 2024 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plaindatetime.prototype.since
description: >
RangeError when inconsistent custom calendar method causes mixed signs of
Duration components
features: [Temporal]
---*/
// Test case provided by André Bargull
const cal = new (class extends Temporal.Calendar {
dateAdd(date, duration, options) {
return super.dateAdd(date, duration.negated(), options);
}
})("iso8601");
const one = new Temporal.PlainDateTime(2000, 1, 1, 0, 0, 0, 0, 0, 0, cal);
const two = new Temporal.PlainDateTime(2020, 5, 10, 12, 12, 0, 0, 0, 0, cal);
assert.throws(RangeError, () => two.since(one, {
largestUnit: "years",
smallestUnit: "hours"
}));

View File

@ -0,0 +1,26 @@
// Copyright (C) 2024 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plaindatetime.prototype.until
description: >
RangeError when inconsistent custom calendar method causes mixed signs of
Duration components
features: [Temporal]
---*/
// Test case provided by André Bargull
const cal = new (class extends Temporal.Calendar {
dateAdd(date, duration, options) {
return super.dateAdd(date, duration.negated(), options);
}
})("iso8601");
const one = new Temporal.PlainDateTime(2000, 1, 1, 0, 0, 0, 0, 0, 0, cal);
const two = new Temporal.PlainDateTime(2020, 5, 10, 12, 12, 0, 0, 0, 0, cal);
assert.throws(RangeError, () => one.until(two, {
largestUnit: "years",
smallestUnit: "hours"
}));