mirror of
https://github.com/tc39/test262.git
synced 2025-07-31 01:44:54 +02:00
Expands and updates (following the normative change in https://github.com/tc39/proposal-temporal/pull/3107, approved May 2025) the current coverage with cases where the number of seconds is incorrect, or rounded. Adds missing coverage for sub-minute offsets in strings passed to Temporal.ZonedDateTime.compare. Adds the unusual test case of Pacific/Niue on October 15, 1952, where the offset shifted by 20 seconds to a whole-minute boundary. Fixes a few minor errors in the existing tests such as a missing ] in a string, and the wrong sign for the offset in Africa/Monrovia in property bags.
56 lines
2.1 KiB
JavaScript
56 lines
2.1 KiB
JavaScript
// 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.duration.compare
|
|
description: relativeTo string accepts an inexact UTC offset rounded to hours and minutes
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
let duration1 = new Temporal.Duration(0, 0, 0, 31);
|
|
let duration2 = new Temporal.Duration(0, 1);
|
|
|
|
let result;
|
|
let relativeTo;
|
|
|
|
const action = (relativeTo) => Temporal.Duration.compare(duration1, duration2, { relativeTo });
|
|
|
|
relativeTo = "1970-01-01T00:00:00-00:45[Africa/Monrovia]";
|
|
result = action(relativeTo);
|
|
assert.sameValue(result, 0, "rounded HH:MM is accepted in string offset");
|
|
|
|
relativeTo = "1970-01-01T00:00:00-00:44:30[Africa/Monrovia]";
|
|
result = action(relativeTo);
|
|
assert.sameValue(result, 0, "unrounded HH:MM:SS is accepted in string offset");
|
|
|
|
relativeTo = "1970-01-01T00:00:00-00:44:40[Africa/Monrovia]";
|
|
assert.throws(RangeError, () => action(relativeTo), "wrong :SS not accepted in string offset");
|
|
|
|
relativeTo = "1970-01-01T00:00:00-00:45:00[Africa/Monrovia]";
|
|
assert.throws(RangeError, () => action(relativeTo), "rounded HH:MM:SS not accepted in string offset");
|
|
|
|
relativeTo = { year: 1970, month: 1, day: 1, offset: "-00:45", timeZone: "Africa/Monrovia" };
|
|
assert.throws(RangeError, () => action(relativeTo), "rounded HH:MM not accepted as offset in property bag");
|
|
|
|
// Pacific/Niue edge case
|
|
|
|
duration1 = new Temporal.Duration(0, 0, 0, 0, /* hours = */ 24);
|
|
duration2 = new Temporal.Duration(0, 0, 0, /* days = */ 1);
|
|
|
|
assert.sameValue(
|
|
action("1952-10-15T23:59:59-11:19:40[Pacific/Niue]"), -1,
|
|
"-11:19:40 is accepted as -11:19:40 in Pacific/Niue edge case"
|
|
);
|
|
assert.sameValue(
|
|
action("1952-10-15T23:59:59-11:20[Pacific/Niue]"), -1,
|
|
"-11:20 matches the first candidate -11:19:40 in the Pacific/Niue edge case"
|
|
);
|
|
assert.sameValue(
|
|
action("1952-10-15T23:59:59-11:20:00[Pacific/Niue]"), 0,
|
|
"-11:20:00 is accepted as -11:20:00 in the Pacific/Niue edge case"
|
|
);
|
|
assert.throws(
|
|
RangeError, () => action("1952-10-15T23:59:59-11:19:50[Pacific/Niue]"),
|
|
"wrong :SS not accepted in the Pacific/Niue edge case"
|
|
);
|