mirror of https://github.com/tc39/test262.git
Regularize leap second tests
Everywhere an ISO string is accepted in Temporal, a seconds value of :60 should always be coerced to :59, because of how leap seconds are handled in ISO strings. In property bags, a 'seconds: 60' property is not subject to that rule: it should be handled according to the overflow option if there is one. These tests existed already for some types; regularize them and add the ones that didn't exist yet.
This commit is contained in:
parent
27f0104bc6
commit
078f3e22a4
|
@ -0,0 +1,24 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.from
|
||||
description: Leap second is a valid ISO string for Calendar
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = Temporal.Calendar.from(arg);
|
||||
assert.sameValue(
|
||||
result1.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar"
|
||||
);
|
||||
|
||||
arg = { calendar: "2016-12-31T23:59:60" };
|
||||
const result2 = Temporal.Calendar.from(arg);
|
||||
assert.sameValue(
|
||||
result2.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar (nested property)"
|
||||
);
|
29
test/built-ins/Temporal/Calendar/prototype/dateAdd/argument-propertybag-calendar-leap-second.js
vendored
Normal file
29
test/built-ins/Temporal/Calendar/prototype/dateAdd/argument-propertybag-calendar-leap-second.js
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.dateadd
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.dateAdd(arg, new Temporal.Duration());
|
||||
TemporalHelpers.assertPlainDate(
|
||||
result1,
|
||||
1976, 11, "M11", 18,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.dateAdd(arg, new Temporal.Duration());
|
||||
TemporalHelpers.assertPlainDate(
|
||||
result2,
|
||||
1976, 11, "M11", 18,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.dateadd
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.dateAdd(arg, new Temporal.Duration());
|
||||
TemporalHelpers.assertPlainDate(
|
||||
result1,
|
||||
2016, 12, "M12", 31,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.dateAdd(arg, new Temporal.Duration());
|
||||
TemporalHelpers.assertPlainDate(
|
||||
result2,
|
||||
2016, 12, "M12", 31,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
|
@ -0,0 +1,25 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.dateuntil
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.dateUntil(arg, new Temporal.PlainDate(1976, 11, 19));
|
||||
TemporalHelpers.assertDuration(result1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, "leap second is a valid ISO string for calendar (first argument)");
|
||||
const result2 = instance.dateUntil(new Temporal.PlainDate(1976, 11, 19), arg);
|
||||
TemporalHelpers.assertDuration(result2, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, "leap second is a valid ISO string for calendar (second argument)");
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result3 = instance.dateUntil(arg, new Temporal.PlainDate(1976, 11, 19));
|
||||
TemporalHelpers.assertDuration(result3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, "leap second is a valid ISO string for calendar (nested property, first argument)");
|
||||
const result4 = instance.dateUntil(new Temporal.PlainDate(1976, 11, 19), arg);
|
||||
TemporalHelpers.assertDuration(result4, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, "leap second is a valid ISO string for calendar (nested property, second argument)");
|
|
@ -0,0 +1,23 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.dateuntil
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
let result = instance.dateUntil(arg, new Temporal.PlainDate(2017, 1, 1));
|
||||
TemporalHelpers.assertDuration(result, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, "leap second is a valid ISO string for PlainDate (first argument)");
|
||||
result = instance.dateUntil(new Temporal.PlainDate(2017, 1, 1), arg);
|
||||
TemporalHelpers.assertDuration(result, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, "leap second is a valid ISO string for PlainDate (second argument)");
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
result = instance.dateUntil(arg, new Temporal.PlainDate(2017, 1, 1));
|
||||
TemporalHelpers.assertDuration(result, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, "second: 60 is ignored in property bag for PlainDate (first argument)");
|
||||
result = instance.dateUntil(new Temporal.PlainDate(2017, 1, 1), arg);
|
||||
TemporalHelpers.assertDuration(result, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, "second: 60 is ignored in property bag for PlainDate (second argument)");
|
28
test/built-ins/Temporal/Calendar/prototype/day/argument-propertybag-calendar-leap-second.js
vendored
Normal file
28
test/built-ins/Temporal/Calendar/prototype/day/argument-propertybag-calendar-leap-second.js
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.day
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.day(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
18,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.day(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
18,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.day
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.day(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
31,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.day(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
31,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.dayofweek
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.dayOfWeek(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
4,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.dayOfWeek(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
4,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.dayofweek
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.dayOfWeek(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
6,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.dayOfWeek(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
6,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.dayofyear
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.dayOfYear(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
323,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.dayOfYear(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
323,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.dayofyear
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.dayOfYear(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
366,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.dayOfYear(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
366,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.daysinmonth
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.daysInMonth(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
30,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.daysInMonth(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
30,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.daysinmonth
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.daysInMonth(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
31,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.daysInMonth(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
31,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.daysinweek
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.daysInWeek(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
7,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.daysInWeek(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
7,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.daysinweek
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.daysInWeek(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
7,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.daysInWeek(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
7,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.daysinyear
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.daysInYear(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
366,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.daysInYear(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
366,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.daysinyear
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.daysInYear(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
366,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.daysInYear(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
366,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.inleapyear
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.inLeapYear(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
true,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.inLeapYear(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
true,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.inleapyear
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.inLeapYear(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
true,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.inLeapYear(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
true,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
28
test/built-ins/Temporal/Calendar/prototype/month/argument-propertybag-calendar-leap-second.js
vendored
Normal file
28
test/built-ins/Temporal/Calendar/prototype/month/argument-propertybag-calendar-leap-second.js
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.month
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.month(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
11,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.month(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
11,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.month
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.month(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
12,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.month(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
12,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.monthcode
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.monthCode(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
"M11",
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.monthCode(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
"M11",
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.monthcode
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.monthCode(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
"M12",
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.monthCode(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
"M12",
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.monthsinyear
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.monthsInYear(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
12,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.monthsInYear(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
12,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.monthsinyear
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.monthsInYear(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
12,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.monthsInYear(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
12,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.weekofyear
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.weekOfYear(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
47,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.weekOfYear(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
47,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.weekofyear
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.weekOfYear(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
52,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.weekOfYear(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
52,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
28
test/built-ins/Temporal/Calendar/prototype/year/argument-propertybag-calendar-leap-second.js
vendored
Normal file
28
test/built-ins/Temporal/Calendar/prototype/year/argument-propertybag-calendar-leap-second.js
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.year
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.year(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
1976,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.year(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
1976,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.calendar.prototype.year
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Calendar("iso8601");
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.year(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
2016,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.year(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
2016,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 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: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
// A string with a leap second is a valid ISO string, so the following two
|
||||
// operations should not throw
|
||||
|
||||
Temporal.Duration.compare(new Temporal.Duration(), new Temporal.Duration(), { relativeTo: { year: 2000, month: 5, day: 2, timeZone } });
|
||||
Temporal.Duration.compare(new Temporal.Duration(), new Temporal.Duration(), { relativeTo: { year: 2000, month: 5, day: 2, timeZone: { timeZone } } });
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => Temporal.Duration.compare(new Temporal.Duration(), new Temporal.Duration(), { relativeTo: { year: 2000, month: 5, day: 2, timeZone } }), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => Temporal.Duration.compare(new Temporal.Duration(), new Temporal.Duration(), { relativeTo: { year: 2000, month: 5, day: 2, timeZone: { timeZone } } }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,43 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.duration.prototype.add
|
||||
description: Leap second is constrained in both an ISO string and a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Duration(1, 0, 0, 1);
|
||||
|
||||
let relativeTo = "2016-12-31T23:59:60";
|
||||
const result1 = instance.add(new Temporal.Duration(0, 0, 0, 0, -24), { relativeTo });
|
||||
TemporalHelpers.assertDuration(
|
||||
result1,
|
||||
1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for PlainDate relativeTo"
|
||||
);
|
||||
|
||||
relativeTo = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
const result2 = instance.add(new Temporal.Duration(0, 0, 0, 0, -24), { relativeTo });
|
||||
TemporalHelpers.assertDuration(
|
||||
result2,
|
||||
1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for ZonedDateTime relativeTo"
|
||||
);
|
||||
|
||||
relativeTo = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result3 = instance.add(new Temporal.Duration(0, 0, 0, 0, -24), { relativeTo });
|
||||
TemporalHelpers.assertDuration(
|
||||
result3,
|
||||
1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"second: 60 is valid in a property bag for PlainDate relativeTo"
|
||||
);
|
||||
|
||||
relativeTo = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60, timeZone: "UTC" };
|
||||
const result4 = instance.add(new Temporal.Duration(0, 0, 0, 0, -24), { relativeTo });
|
||||
TemporalHelpers.assertDuration(
|
||||
result4,
|
||||
1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"second: 60 is valid in a property bag for ZonedDateTime relativeTo"
|
||||
);
|
21
test/built-ins/Temporal/Duration/prototype/add/timezone-string-leap-second.js
vendored
Normal file
21
test/built-ins/Temporal/Duration/prototype/add/timezone-string-leap-second.js
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.duration.prototype.add
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Duration(1);
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
// A string with a leap second is a valid ISO string, so the following two
|
||||
// operations should not throw
|
||||
|
||||
instance.add(new Temporal.Duration(1), { relativeTo: { year: 2000, month: 5, day: 2, timeZone } });
|
||||
instance.add(new Temporal.Duration(1), { relativeTo: { year: 2000, month: 5, day: 2, timeZone: { timeZone } } });
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => instance.add(new Temporal.Duration(1), { relativeTo: { year: 2000, month: 5, day: 2, timeZone } }), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => instance.add(new Temporal.Duration(1), { relativeTo: { year: 2000, month: 5, day: 2, timeZone: { timeZone } } }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,43 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.duration.prototype.round
|
||||
description: Leap second is constrained in both an ISO string and a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Duration(1, 0, 0, 0, 24);
|
||||
|
||||
let relativeTo = "2016-12-31T23:59:60";
|
||||
const result1 = instance.round({ largestUnit: "years", relativeTo });
|
||||
TemporalHelpers.assertDuration(
|
||||
result1,
|
||||
1, 0, 0, 1, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for PlainDate relativeTo"
|
||||
);
|
||||
|
||||
relativeTo = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
const result2 = instance.round({ largestUnit: "years", relativeTo });
|
||||
TemporalHelpers.assertDuration(
|
||||
result2,
|
||||
1, 0, 0, 1, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for ZonedDateTime relativeTo"
|
||||
);
|
||||
|
||||
relativeTo = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result3 = instance.round({ largestUnit: "years", relativeTo });
|
||||
TemporalHelpers.assertDuration(
|
||||
result3,
|
||||
1, 0, 0, 1, 0, 0, 0, 0, 0, 0,
|
||||
"second: 60 is valid in a property bag for PlainDate relativeTo"
|
||||
);
|
||||
|
||||
relativeTo = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60, timeZone: "UTC" };
|
||||
const result4 = instance.round({ largestUnit: "years", relativeTo });
|
||||
TemporalHelpers.assertDuration(
|
||||
result4,
|
||||
1, 0, 0, 1, 0, 0, 0, 0, 0, 0,
|
||||
"second: 60 is valid in a property bag for ZonedDateTime relativeTo"
|
||||
);
|
21
test/built-ins/Temporal/Duration/prototype/round/timezone-string-leap-second.js
vendored
Normal file
21
test/built-ins/Temporal/Duration/prototype/round/timezone-string-leap-second.js
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.duration.prototype.round
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Duration(1);
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
// A string with a leap second is a valid ISO string, so the following two
|
||||
// operations should not throw
|
||||
|
||||
instance.round({ largestUnit: "months", relativeTo: { year: 2000, month: 5, day: 2, timeZone } });
|
||||
instance.round({ largestUnit: "months", relativeTo: { year: 2000, month: 5, day: 2, timeZone: { timeZone } } });
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => instance.round({ largestUnit: "months", relativeTo: { year: 2000, month: 5, day: 2, timeZone } }), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => instance.round({ largestUnit: "months", relativeTo: { year: 2000, month: 5, day: 2, timeZone: { timeZone } } }), "leap second in time zone name not valid (nested property)");
|
43
test/built-ins/Temporal/Duration/prototype/subtract/relativeto-leap-second.js
vendored
Normal file
43
test/built-ins/Temporal/Duration/prototype/subtract/relativeto-leap-second.js
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.duration.prototype.subtract
|
||||
description: Leap second is constrained in both an ISO string and a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Duration(1, 0, 0, 1);
|
||||
|
||||
let relativeTo = "2016-12-31T23:59:60";
|
||||
const result1 = instance.subtract(new Temporal.Duration(0, 0, 0, 0, 24), { relativeTo });
|
||||
TemporalHelpers.assertDuration(
|
||||
result1,
|
||||
1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for PlainDate relativeTo"
|
||||
);
|
||||
|
||||
relativeTo = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
const result2 = instance.subtract(new Temporal.Duration(0, 0, 0, 0, 24), { relativeTo });
|
||||
TemporalHelpers.assertDuration(
|
||||
result2,
|
||||
1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for ZonedDateTime relativeTo"
|
||||
);
|
||||
|
||||
relativeTo = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result3 = instance.subtract(new Temporal.Duration(0, 0, 0, 0, 24), { relativeTo });
|
||||
TemporalHelpers.assertDuration(
|
||||
result3,
|
||||
1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"second: 60 is valid in a property bag for PlainDate relativeTo"
|
||||
);
|
||||
|
||||
relativeTo = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60, timeZone: "UTC" };
|
||||
const result4 = instance.subtract(new Temporal.Duration(0, 0, 0, 0, 24), { relativeTo });
|
||||
TemporalHelpers.assertDuration(
|
||||
result4,
|
||||
1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"second: 60 is valid in a property bag for ZonedDateTime relativeTo"
|
||||
);
|
21
test/built-ins/Temporal/Duration/prototype/subtract/timezone-string-leap-second.js
vendored
Normal file
21
test/built-ins/Temporal/Duration/prototype/subtract/timezone-string-leap-second.js
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.duration.prototype.subtract
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Duration(1);
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
// A string with a leap second is a valid ISO string, so the following two
|
||||
// operations should not throw
|
||||
|
||||
instance.subtract(new Temporal.Duration(1), { relativeTo: { year: 2000, month: 5, day: 2, timeZone } });
|
||||
instance.subtract(new Temporal.Duration(1), { relativeTo: { year: 2000, month: 5, day: 2, timeZone: { timeZone } } });
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => instance.subtract(new Temporal.Duration(1), { relativeTo: { year: 2000, month: 5, day: 2, timeZone } }), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => instance.subtract(new Temporal.Duration(1), { relativeTo: { year: 2000, month: 5, day: 2, timeZone: { timeZone } } }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,42 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.duration.prototype.total
|
||||
description: Leap second is constrained in both an ISO string and a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Duration(1, 0, 0, 0, 24);
|
||||
|
||||
let relativeTo = "2016-12-31T23:59:60";
|
||||
const result1 = instance.total({ unit: "days", relativeTo });
|
||||
assert.sameValue(
|
||||
result1,
|
||||
366,
|
||||
"leap second is a valid ISO string for PlainDate relativeTo"
|
||||
);
|
||||
|
||||
relativeTo = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
const result2 = instance.total({ unit: "days", relativeTo });
|
||||
assert.sameValue(
|
||||
result2,
|
||||
366,
|
||||
"leap second is a valid ISO string for ZonedDateTime relativeTo"
|
||||
);
|
||||
|
||||
relativeTo = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result3 = instance.total({ unit: "days", relativeTo });
|
||||
assert.sameValue(
|
||||
result3,
|
||||
366,
|
||||
"second: 60 is valid in a property bag for PlainDate relativeTo"
|
||||
);
|
||||
|
||||
relativeTo = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60, timeZone: "UTC" };
|
||||
const result4 = instance.total({ unit: "days", relativeTo });
|
||||
assert.sameValue(
|
||||
result4,
|
||||
366,
|
||||
"second: 60 is valid in a property bag for ZonedDateTime relativeTo"
|
||||
);
|
21
test/built-ins/Temporal/Duration/prototype/total/timezone-string-leap-second.js
vendored
Normal file
21
test/built-ins/Temporal/Duration/prototype/total/timezone-string-leap-second.js
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.duration.prototype.total
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Duration(1);
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
// A string with a leap second is a valid ISO string, so the following two
|
||||
// operations should not throw
|
||||
|
||||
instance.total({ unit: "months", relativeTo: { year: 2000, month: 5, day: 2, timeZone } });
|
||||
instance.total({ unit: "months", relativeTo: { year: 2000, month: 5, day: 2, timeZone: { timeZone } } });
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => instance.total({ unit: "months", relativeTo: { year: 2000, month: 5, day: 2, timeZone } }), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => instance.total({ unit: "months", relativeTo: { year: 2000, month: 5, day: 2, timeZone: { timeZone } } }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,15 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.instant.compare
|
||||
description: Leap second is a valid ISO string for Instant
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const other = new Temporal.Instant(1_483_228_799_000_000_000n);
|
||||
const arg = "2016-12-31T23:59:60Z";
|
||||
const result1 = Temporal.Instant.compare(arg, other);
|
||||
assert.sameValue(result1, 0, "leap second is a valid ISO string for Instant (first argument)");
|
||||
const result2 = Temporal.Instant.compare(other, arg);
|
||||
assert.sameValue(result2, 0, "leap second is a valid ISO string for Instant (second argument)");
|
|
@ -0,0 +1,16 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.instant.from
|
||||
description: Leap second is a valid ISO string for Instant
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const arg = "2016-12-31T23:59:60Z";
|
||||
const result = Temporal.Instant.from(arg);
|
||||
assert.sameValue(
|
||||
result.epochNanoseconds,
|
||||
1_483_228_799_000_000_000n,
|
||||
"leap second is a valid ISO string for Instant"
|
||||
);
|
|
@ -0,0 +1,18 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.instant.prototype.equals
|
||||
description: Leap second is a valid ISO string for Instant
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Instant(1_483_228_799_000_000_000n);
|
||||
|
||||
const arg = "2016-12-31T23:59:60Z";
|
||||
const result = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result,
|
||||
true,
|
||||
"leap second is a valid ISO string for Instant"
|
||||
);
|
|
@ -0,0 +1,19 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.instant.prototype.since
|
||||
description: Leap second is a valid ISO string for Instant
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Instant(1_483_228_799_000_000_000n);
|
||||
|
||||
const arg = "2016-12-31T23:59:60Z";
|
||||
const result = instance.since(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for Instant"
|
||||
);
|
20
test/built-ins/Temporal/Instant/prototype/toString/timezone-string-leap-second.js
vendored
Normal file
20
test/built-ins/Temporal/Instant/prototype/toString/timezone-string-leap-second.js
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.instant.prototype.tostring
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Instant(0n);
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
const result1 = instance.toString({ timeZone });
|
||||
assert.sameValue(result1.substr(-6), "+00:00", "leap second is a valid ISO string for TimeZone");
|
||||
const result2 = instance.toString({ timeZone: { timeZone } });
|
||||
assert.sameValue(result2.substr(-6), "+00:00", "leap second is a valid ISO string for TimeZone (nested property)");
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => instance.toString({ timeZone }), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => instance.toString({ timeZone: { timeZone } }), "leap second in time zone name not valid (nested property)");
|
26
test/built-ins/Temporal/Instant/prototype/toZonedDateTime/calendar-string-leap-second.js
vendored
Normal file
26
test/built-ins/Temporal/Instant/prototype/toZonedDateTime/calendar-string-leap-second.js
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.instant.prototype.tozoneddatetime
|
||||
description: Leap second is a valid ISO string for Calendar
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Instant(1_000_000_000_000_000_000n);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.toZonedDateTime({ calendar: arg, timeZone: "UTC" });
|
||||
assert.sameValue(
|
||||
result1.calendar.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar"
|
||||
);
|
||||
|
||||
arg = { calendar: "2016-12-31T23:59:60" };
|
||||
const result2 = instance.toZonedDateTime({ calendar: arg, timeZone: "UTC" });
|
||||
assert.sameValue(
|
||||
result2.calendar.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar (nested property)"
|
||||
);
|
20
test/built-ins/Temporal/Instant/prototype/toZonedDateTime/timezone-string-leap-second.js
vendored
Normal file
20
test/built-ins/Temporal/Instant/prototype/toZonedDateTime/timezone-string-leap-second.js
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.instant.prototype.tozoneddatetime
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Instant(0n);
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
const result1 = instance.toZonedDateTime({ timeZone, calendar: "iso8601" });
|
||||
assert.sameValue(result1.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone");
|
||||
const result2 = instance.toZonedDateTime({ timeZone: { timeZone }, calendar: "iso8601" });
|
||||
assert.sameValue(result2.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone (nested property)");
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => instance.toZonedDateTime({ timeZone, calendar: "iso8601" }), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => instance.toZonedDateTime({ timeZone: { timeZone }, calendar: "iso8601" }), "leap second in time zone name not valid (nested property)");
|
20
test/built-ins/Temporal/Instant/prototype/toZonedDateTimeISO/timezone-string-leap-second.js
vendored
Normal file
20
test/built-ins/Temporal/Instant/prototype/toZonedDateTimeISO/timezone-string-leap-second.js
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.instant.prototype.tozoneddatetimeiso
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Instant(0n);
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
const result1 = instance.toZonedDateTimeISO(timeZone);
|
||||
assert.sameValue(result1.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone");
|
||||
const result2 = instance.toZonedDateTimeISO({ timeZone });
|
||||
assert.sameValue(result2.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone (nested property)");
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => instance.toZonedDateTimeISO(timeZone), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => instance.toZonedDateTimeISO({ timeZone }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,19 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.instant.prototype.until
|
||||
description: Leap second is a valid ISO string for Instant
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.Instant(1_483_228_799_000_000_000n);
|
||||
|
||||
const arg = "2016-12-31T23:59:60Z";
|
||||
const result = instance.until(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for Instant"
|
||||
);
|
|
@ -0,0 +1,24 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.now.plaindate
|
||||
description: Leap second is a valid ISO string for Calendar
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = Temporal.Now.plainDate(arg);
|
||||
assert.sameValue(
|
||||
result1.calendar.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar"
|
||||
);
|
||||
|
||||
arg = { calendar: "2016-12-31T23:59:60" };
|
||||
const result2 = Temporal.Now.plainDate(arg);
|
||||
assert.sameValue(
|
||||
result2.calendar.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.now.plaindate
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
// A string with a leap second is a valid ISO string, so the following two
|
||||
// operations should not throw
|
||||
|
||||
Temporal.Now.plainDate("iso8601", timeZone);
|
||||
Temporal.Now.plainDate("iso8601", { timeZone });
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => Temporal.Now.plainDate("iso8601", timeZone), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => Temporal.Now.plainDate("iso8601", { timeZone }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.now.plaindateiso
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
// A string with a leap second is a valid ISO string, so the following two
|
||||
// operations should not throw
|
||||
|
||||
Temporal.Now.plainDateISO(timeZone);
|
||||
Temporal.Now.plainDateISO({ timeZone });
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => Temporal.Now.plainDateISO(timeZone), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => Temporal.Now.plainDateISO({ timeZone }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,24 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.now.plaindatetime
|
||||
description: Leap second is a valid ISO string for Calendar
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = Temporal.Now.plainDateTime(arg);
|
||||
assert.sameValue(
|
||||
result1.calendar.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar"
|
||||
);
|
||||
|
||||
arg = { calendar: "2016-12-31T23:59:60" };
|
||||
const result2 = Temporal.Now.plainDateTime(arg);
|
||||
assert.sameValue(
|
||||
result2.calendar.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.now.plaindatetime
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
// A string with a leap second is a valid ISO string, so the following two
|
||||
// operations should not throw
|
||||
|
||||
Temporal.Now.plainDateTime("iso8601", timeZone);
|
||||
Temporal.Now.plainDateTime("iso8601", { timeZone });
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => Temporal.Now.plainDateTime("iso8601", timeZone), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => Temporal.Now.plainDateTime("iso8601", { timeZone }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.now.plaindatetimeiso
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
// A string with a leap second is a valid ISO string, so the following two
|
||||
// operations should not throw
|
||||
|
||||
Temporal.Now.plainDateTimeISO(timeZone);
|
||||
Temporal.Now.plainDateTimeISO({ timeZone });
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => Temporal.Now.plainDateTimeISO(timeZone), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => Temporal.Now.plainDateTimeISO({ timeZone }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.now.plaintimeiso
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
// A string with a leap second is a valid ISO string, so the following two
|
||||
// operations should not throw
|
||||
|
||||
Temporal.Now.plainTimeISO(timeZone);
|
||||
Temporal.Now.plainTimeISO({ timeZone });
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => Temporal.Now.plainTimeISO(timeZone), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => Temporal.Now.plainTimeISO({ timeZone }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,24 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.now.zoneddatetime
|
||||
description: Leap second is a valid ISO string for Calendar
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = Temporal.Now.zonedDateTime(arg);
|
||||
assert.sameValue(
|
||||
result1.calendar.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar"
|
||||
);
|
||||
|
||||
arg = { calendar: "2016-12-31T23:59:60" };
|
||||
const result2 = Temporal.Now.zonedDateTime(arg);
|
||||
assert.sameValue(
|
||||
result2.calendar.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,19 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.now.zoneddatetime
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
const result1 = Temporal.Now.zonedDateTime("iso8601", timeZone);
|
||||
assert.sameValue(result1.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone");
|
||||
const result2 = Temporal.Now.zonedDateTime("iso8601", { timeZone });
|
||||
assert.sameValue(result2.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone (nested property)");
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => Temporal.Now.zonedDateTime("iso8601", timeZone), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => Temporal.Now.zonedDateTime("iso8601", { timeZone }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,19 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.now.zoneddatetimeiso
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
const result1 = Temporal.Now.zonedDateTimeISO(timeZone);
|
||||
assert.sameValue(result1.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone");
|
||||
const result2 = Temporal.Now.zonedDateTimeISO({ timeZone });
|
||||
assert.sameValue(result2.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone (nested property)");
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => Temporal.Now.zonedDateTimeISO(timeZone), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => Temporal.Now.zonedDateTimeISO({ timeZone }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,22 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindate.compare
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = Temporal.PlainDate.compare(arg, new Temporal.PlainDate(1976, 11, 18));
|
||||
assert.sameValue(result1, 0, "leap second is a valid ISO string for calendar (first argument)");
|
||||
const result2 = Temporal.PlainDate.compare(new Temporal.PlainDate(1976, 11, 18), arg);
|
||||
assert.sameValue(result2, 0, "leap second is a valid ISO string for calendar (first argument)");
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result3 = Temporal.PlainDate.compare(arg, new Temporal.PlainDate(1976, 11, 18));
|
||||
assert.sameValue(result3, 0, "leap second is a valid ISO string for calendar (nested property, first argument)");
|
||||
const result4 = Temporal.PlainDate.compare(new Temporal.PlainDate(1976, 11, 18), arg);
|
||||
assert.sameValue(result4, 0, "leap second is a valid ISO string for calendar (nested property, second argument)");
|
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindate.compare
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
let result = Temporal.PlainDate.compare(arg, new Temporal.PlainDate(2016, 12, 31));
|
||||
assert.sameValue(result, 0, "leap second is a valid ISO string for PlainDate (first argument)");
|
||||
result = Temporal.PlainDate.compare(new Temporal.PlainDate(2016, 12, 31), arg);
|
||||
assert.sameValue(result, 0, "leap second is a valid ISO string for PlainDate (second argument)");
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
result = Temporal.PlainDate.compare(arg, new Temporal.PlainDate(2016, 12, 31));
|
||||
assert.sameValue(result, 0, "second: 60 is ignored in property bag for PlainDate (first argument)");
|
||||
result = Temporal.PlainDate.compare(new Temporal.PlainDate(2016, 12, 31), arg);
|
||||
assert.sameValue(result, 0, "second: 60 is ignored in property bag for PlainDate (second argument)");
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 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: Leap second is a valid ISO string for a calendar in a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = Temporal.PlainDate.from(arg);
|
||||
TemporalHelpers.assertPlainDate(
|
||||
result1,
|
||||
1976, 11, "M11", 18,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = Temporal.PlainDate.from(arg);
|
||||
TemporalHelpers.assertPlainDate(
|
||||
result2,
|
||||
1976, 11, "M11", 18,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,41 @@
|
|||
// Copyright (C) 2022 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: Leap second is a valid ISO string for PlainDate
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
|
||||
const result1 = Temporal.PlainDate.from(arg);
|
||||
TemporalHelpers.assertPlainDate(
|
||||
result1,
|
||||
2016, 12, "M12", 31,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
const result2 = Temporal.PlainDate.from(arg, { overflow: "reject" });
|
||||
TemporalHelpers.assertPlainDate(
|
||||
result2,
|
||||
2016, 12, "M12", 31,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
|
||||
const result3 = Temporal.PlainDate.from(arg);
|
||||
TemporalHelpers.assertPlainDate(
|
||||
result3,
|
||||
2016, 12, "M12", 31,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
||||
|
||||
const result4 = Temporal.PlainDate.from(arg, { overflow: "reject" });
|
||||
TemporalHelpers.assertPlainDate(
|
||||
result4,
|
||||
2016, 12, "M12", 31,
|
||||
"second: 60 is ignored in property bag for PlainDate even with overflow: reject"
|
||||
);
|
28
test/built-ins/Temporal/PlainDate/prototype/equals/argument-propertybag-calendar-leap-second.js
vendored
Normal file
28
test/built-ins/Temporal/PlainDate/prototype/equals/argument-propertybag-calendar-leap-second.js
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindate.prototype.equals
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDate(1976, 11, 18);
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
true,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
true,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindate.prototype.equals
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDate(2016, 12, 31);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
true,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
true,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
29
test/built-ins/Temporal/PlainDate/prototype/since/argument-propertybag-calendar-leap-second.js
vendored
Normal file
29
test/built-ins/Temporal/PlainDate/prototype/since/argument-propertybag-calendar-leap-second.js
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindate.prototype.since
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDate(1976, 11, 18);
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.since(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result1,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.since(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result2,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindate.prototype.since
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDate(2016, 12, 31);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.since(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result1,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.since(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result2,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindate.prototype.toplaindatetime
|
||||
description: Leap second is a valid ISO string for PlainTime
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDate(2000, 5, 2);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.toPlainDateTime(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result1,
|
||||
2000, 5, "M05", 2, 23, 59, 59, 0, 0, 0,
|
||||
"leap second is a valid ISO string for PlainTime"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.toPlainDateTime(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result2,
|
||||
2000, 5, "M05", 2, 23, 59, 59, 0, 0, 0,
|
||||
"second: 60 is ignored in property bag for PlainTime"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindate.prototype.tozoneddatetime
|
||||
description: Leap second is a valid ISO string for PlainTime
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDate(2000, 5, 2);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.toZonedDateTime({ plainTime: arg, timeZone: "UTC" });
|
||||
assert.sameValue(
|
||||
result1.epochNanoseconds,
|
||||
957311999_000_000_000n,
|
||||
"leap second is a valid ISO string for PlainTime"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.toZonedDateTime({ plainTime: arg, timeZone: "UTC" });
|
||||
assert.sameValue(
|
||||
result2.epochNanoseconds,
|
||||
957311999_000_000_000n,
|
||||
"second: 60 is ignored in property bag for PlainTime"
|
||||
);
|
20
test/built-ins/Temporal/PlainDate/prototype/toZonedDateTime/timezone-string-leap-second.js
vendored
Normal file
20
test/built-ins/Temporal/PlainDate/prototype/toZonedDateTime/timezone-string-leap-second.js
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindate.prototype.tozoneddatetime
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDate(2000, 5, 2);
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
const result1 = instance.toZonedDateTime(timeZone);
|
||||
assert.sameValue(result1.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone");
|
||||
const result2 = instance.toZonedDateTime({ timeZone });
|
||||
assert.sameValue(result2.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone (nested property)");
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => instance.toZonedDateTime(timeZone), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => instance.toZonedDateTime({ timeZone }), "leap second in time zone name not valid (nested property)");
|
29
test/built-ins/Temporal/PlainDate/prototype/until/argument-propertybag-calendar-leap-second.js
vendored
Normal file
29
test/built-ins/Temporal/PlainDate/prototype/until/argument-propertybag-calendar-leap-second.js
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindate.prototype.until
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDate(1976, 11, 18);
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.until(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result1,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.until(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result2,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindate.prototype.until
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDate(2016, 12, 31);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.until(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result1,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.until(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result2,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
26
test/built-ins/Temporal/PlainDate/prototype/withCalendar/calendar-string-leap-second.js
vendored
Normal file
26
test/built-ins/Temporal/PlainDate/prototype/withCalendar/calendar-string-leap-second.js
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindate.prototype.withcalendar
|
||||
description: Leap second is a valid ISO string for Calendar
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDate(1976, 11, 18, { id: "replace-me" });
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.withCalendar(arg);
|
||||
assert.sameValue(
|
||||
result1.calendar.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar"
|
||||
);
|
||||
|
||||
arg = { calendar: "2016-12-31T23:59:60" };
|
||||
const result2 = instance.withCalendar(arg);
|
||||
assert.sameValue(
|
||||
result2.calendar.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,23 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.compare
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = Temporal.PlainDateTime.compare(arg, new Temporal.PlainDateTime(1976, 11, 18));
|
||||
assert.sameValue(result1, 0, "leap second is a valid ISO string for calendar (first argument)");
|
||||
const result2 = Temporal.PlainDateTime.compare(new Temporal.PlainDateTime(1976, 11, 18), arg);
|
||||
assert.sameValue(result2, 0, "leap second is a valid ISO string for calendar (second argument)");
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result3 = Temporal.PlainDateTime.compare(arg, new Temporal.PlainDateTime(1976, 11, 18));
|
||||
assert.sameValue(result3, 0, "leap second is a valid ISO string for calendar (nested property, first argument)");
|
||||
const result4 = Temporal.PlainDateTime.compare(new Temporal.PlainDateTime(1976, 11, 18), arg);
|
||||
assert.sameValue(result4, 0, "leap second is a valid ISO string for calendar (nested property, second argument)");
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.compare
|
||||
description: Leap second is a valid ISO string for PlainDateTime
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = Temporal.PlainDateTime.compare(arg, new Temporal.PlainDateTime(2016, 12, 31, 23, 59, 59));
|
||||
assert.sameValue(result1, 0, "leap second is a valid ISO string for PlainDateTime (first argument)");
|
||||
const result2 = Temporal.PlainDateTime.compare(new Temporal.PlainDateTime(2016, 12, 31, 23, 59, 59), arg);
|
||||
assert.sameValue(result2, 0, "leap second is a valid ISO string for PlainDateTime (second argument)");
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
|
||||
const result3 = Temporal.PlainDateTime.compare(arg, new Temporal.PlainDateTime(2016, 12, 31, 23, 59, 59));
|
||||
assert.sameValue(result3, 0, "second: 60 is constrained in property bag for PlainDateTime (first argument)");
|
||||
const result4 = Temporal.PlainDateTime.compare(new Temporal.PlainDateTime(2016, 12, 31, 23, 59, 59), arg);
|
||||
assert.sameValue(result4, 0, "second: 60 is constrained in property bag for PlainDateTime (second argument)");
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.from
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = Temporal.PlainDateTime.from(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result1,
|
||||
1976, 11, "M11", 18, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = Temporal.PlainDateTime.from(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result2,
|
||||
1976, 11, "M11", 18, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -3,33 +3,38 @@
|
|||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.from
|
||||
description: Leap seconds may be accepted or rejected
|
||||
features: [Temporal]
|
||||
description: Leap second is a valid ISO string for PlainDateTime
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
|
||||
const result1 = Temporal.PlainDateTime.from(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
Temporal.PlainDateTime.from("2016-12-31T23:59:60"),
|
||||
result1,
|
||||
2016, 12, "M12", 31, 23, 59, 59, 0, 0, 0,
|
||||
"ISO string with leap second is constrained"
|
||||
"leap second is a valid ISO string for PlainDateTime"
|
||||
);
|
||||
|
||||
const result2 = Temporal.PlainDateTime.from(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
Temporal.PlainDateTime.from("2016-12-31T23:59:60", {overflow: "reject"}),
|
||||
result2,
|
||||
2016, 12, "M12", 31, 23, 59, 59, 0, 0, 0,
|
||||
"ISO string with leap second is constrained (overflow = reject)"
|
||||
"leap second is a valid ISO string for PlainDateTime even with overflow: reject"
|
||||
);
|
||||
|
||||
const leap = {year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60};
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
|
||||
const result3 = Temporal.PlainDateTime.from(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
Temporal.PlainDateTime.from(leap),
|
||||
result3,
|
||||
2016, 12, "M12", 31, 23, 59, 59, 0, 0, 0,
|
||||
"constrain leap second"
|
||||
"second: 60 is constrained in property bag for PlainDateTime"
|
||||
);
|
||||
|
||||
assert.throws(
|
||||
RangeError,
|
||||
() => Temporal.PlainDateTime.from(leap, {overflow: "reject"}),
|
||||
"reject leap second (plain object argument)"
|
||||
() => Temporal.PlainDateTime.from(arg, { overflow: "reject" }),
|
||||
"second: 60 is rejected in property bag for PlainDateTime with overflow: reject"
|
||||
);
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.prototype.equals
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDateTime(1976, 11, 18);
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
true,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
true,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.prototype.equals
|
||||
description: Leap second is a valid ISO string for PlainDateTime
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDateTime(2016, 12, 31, 23, 59, 59);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
true,
|
||||
"leap second is a valid ISO string for PlainDateTime"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
true,
|
||||
"second: 60 is ignored in property bag for PlainDateTime"
|
||||
);
|
|
@ -0,0 +1,29 @@
|
|||
// Copyright (C) 2022 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: Leap second is a valid ISO string for a calendar in a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDateTime(1976, 11, 18);
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.since(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result1,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.since(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result2,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 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: Leap second is a valid ISO string for PlainDateTime
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDateTime(2016, 12, 31, 23, 59, 59);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.since(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result1,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for PlainDateTime"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.since(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result2,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"second: 60 is ignored in property bag for PlainDateTime"
|
||||
);
|
20
test/built-ins/Temporal/PlainDateTime/prototype/toZonedDateTime/timezone-string-leap-second.js
vendored
Normal file
20
test/built-ins/Temporal/PlainDateTime/prototype/toZonedDateTime/timezone-string-leap-second.js
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.prototype.tozoneddatetime
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDateTime(2000, 5, 2);
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
const result1 = instance.toZonedDateTime(timeZone);
|
||||
assert.sameValue(result1.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone");
|
||||
const result2 = instance.toZonedDateTime({ timeZone });
|
||||
assert.sameValue(result2.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone (nested property)");
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => instance.toZonedDateTime(timeZone), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => instance.toZonedDateTime({ timeZone }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,29 @@
|
|||
// Copyright (C) 2022 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: Leap second is a valid ISO string for a calendar in a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDateTime(1976, 11, 18);
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.until(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result1,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.until(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result2,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 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: Leap second is a valid ISO string for PlainDateTime
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDateTime(2016, 12, 31, 23, 59, 59);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.until(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result1,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for PlainDateTime"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.until(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result2,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"second: 60 is ignored in property bag for PlainDateTime"
|
||||
);
|
26
test/built-ins/Temporal/PlainDateTime/prototype/withCalendar/calendar-string-leap-second.js
vendored
Normal file
26
test/built-ins/Temporal/PlainDateTime/prototype/withCalendar/calendar-string-leap-second.js
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.prototype.withcalendar
|
||||
description: Leap second is a valid ISO string for Calendar
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDateTime(1976, 11, 18, 15, 23, 30, 123, 456, 789, { id: "replace-me" });
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.withCalendar(arg);
|
||||
assert.sameValue(
|
||||
result1.calendar.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar"
|
||||
);
|
||||
|
||||
arg = { calendar: "2016-12-31T23:59:60" };
|
||||
const result2 = instance.withCalendar(arg);
|
||||
assert.sameValue(
|
||||
result2.calendar.id,
|
||||
"iso8601",
|
||||
"leap second is a valid ISO string for Calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,29 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.prototype.withplaindate
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDateTime(2000, 5, 2, 12, 34, 56, 987, 654, 321);
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.withPlainDate(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result1,
|
||||
1976, 11, "M11", 18, 12, 34, 56, 987, 654, 321,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.withPlainDate(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result2,
|
||||
1976, 11, "M11", 18, 12, 34, 56, 987, 654, 321,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
27
test/built-ins/Temporal/PlainDateTime/prototype/withPlainDate/leap-second.js
vendored
Normal file
27
test/built-ins/Temporal/PlainDateTime/prototype/withPlainDate/leap-second.js
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.prototype.withplaindate
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDateTime(2000, 5, 2, 12, 34, 56, 987, 654, 321);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.withPlainDate(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result1,
|
||||
2016, 12, "M12", 31, 12, 34, 56, 987, 654, 321,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.withPlainDate(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result2,
|
||||
2016, 12, "M12", 31, 12, 34, 56, 987, 654, 321,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
27
test/built-ins/Temporal/PlainDateTime/prototype/withPlainTime/leap-second.js
vendored
Normal file
27
test/built-ins/Temporal/PlainDateTime/prototype/withPlainTime/leap-second.js
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaindatetime.prototype.withplaintime
|
||||
description: Leap second is a valid ISO string for PlainTime
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainDateTime(2000, 5, 2, 12, 34, 56, 987, 654, 321);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.withPlainTime(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result1,
|
||||
2000, 5, "M05", 2, 23, 59, 59, 0, 0, 0,
|
||||
"leap second is a valid ISO string for PlainTime"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.withPlainTime(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result2,
|
||||
2000, 5, "M05", 2, 23, 59, 59, 0, 0, 0,
|
||||
"second: 60 is ignored in property bag for PlainTime"
|
||||
);
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plainmonthday.from
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { monthCode: "M11", day: 18, calendar };
|
||||
const result1 = Temporal.PlainMonthDay.from(arg);
|
||||
TemporalHelpers.assertPlainMonthDay(
|
||||
result1,
|
||||
"M11", 18,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = Temporal.PlainMonthDay.from(arg);
|
||||
TemporalHelpers.assertPlainMonthDay(
|
||||
result2,
|
||||
"M11", 18,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,41 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plainmonthday.from
|
||||
description: Leap second is a valid ISO string for PlainMonthDay
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
|
||||
const result1 = Temporal.PlainMonthDay.from(arg);
|
||||
TemporalHelpers.assertPlainMonthDay(
|
||||
result1,
|
||||
"M12", 31,
|
||||
"leap second is a valid ISO string for PlainMonthDay"
|
||||
);
|
||||
|
||||
const result2 = Temporal.PlainMonthDay.from(arg, { overflow: "reject" });
|
||||
TemporalHelpers.assertPlainMonthDay(
|
||||
result2,
|
||||
"M12", 31,
|
||||
"leap second is a valid ISO string for PlainMonthDay"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
|
||||
const result3 = Temporal.PlainMonthDay.from(arg);
|
||||
TemporalHelpers.assertPlainMonthDay(
|
||||
result3,
|
||||
"M12", 31,
|
||||
"second: 60 is ignored in property bag for PlainMonthDay"
|
||||
);
|
||||
|
||||
const result4 = Temporal.PlainMonthDay.from(arg, { overflow: "reject" });
|
||||
TemporalHelpers.assertPlainMonthDay(
|
||||
result4,
|
||||
"M12", 31,
|
||||
"second: 60 is ignored in property bag for PlainMonthDay even with overflow: reject"
|
||||
);
|
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plainmonthday.prototype.equals
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainMonthDay(11, 18);
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
true,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
true,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plainmonthday.prototype.equals
|
||||
description: Leap second is a valid ISO string for PlainMonthDay
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainMonthDay(12, 31);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
true,
|
||||
"leap second is a valid ISO string for PlainMonthDay"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
true,
|
||||
"second: 60 is ignored in property bag for PlainMonthDay"
|
||||
);
|
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaintime.compare
|
||||
description: Leap second is a valid ISO string for PlainTime
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = Temporal.PlainTime.compare(arg, new Temporal.PlainTime(23, 59, 59));
|
||||
assert.sameValue(result1, 0, "leap second is a valid ISO string for PlainTime (first argument)");
|
||||
const result2 = Temporal.PlainTime.compare(new Temporal.PlainTime(23, 59, 59), arg);
|
||||
assert.sameValue(result2, 0, "leap second is a valid ISO string for PlainTime (first argument)");
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result3 = Temporal.PlainTime.compare(arg, new Temporal.PlainTime(23, 59, 59));
|
||||
assert.sameValue(result3, 0, "second: 60 is ignored in property bag for PlainTime (first argument)");
|
||||
const result4 = Temporal.PlainTime.compare(new Temporal.PlainTime(23, 59, 59), arg);
|
||||
assert.sameValue(result4, 0, "second: 60 is ignored in property bag for PlainTime (second argument)");
|
|
@ -0,0 +1,40 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaintime.from
|
||||
description: Leap second is a valid ISO string for PlainTime
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
|
||||
const result1 = Temporal.PlainTime.from(arg);
|
||||
TemporalHelpers.assertPlainTime(
|
||||
result1,
|
||||
23, 59, 59, 0, 0, 0,
|
||||
"leap second is a valid ISO string for PlainTime"
|
||||
);
|
||||
|
||||
const result2 = Temporal.PlainTime.from(arg, { overflow: "reject" });
|
||||
TemporalHelpers.assertPlainTime(
|
||||
result2,
|
||||
23, 59, 59, 0, 0, 0,
|
||||
"leap second is a valid ISO string for PlainTime"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
|
||||
const result3 = Temporal.PlainTime.from(arg);
|
||||
TemporalHelpers.assertPlainTime(
|
||||
result3,
|
||||
23, 59, 59, 0, 0, 0,
|
||||
"second: 60 is ignored in property bag for PlainTime"
|
||||
);
|
||||
|
||||
assert.throws(
|
||||
RangeError,
|
||||
() => Temporal.PlainTime.from(arg, { overflow: "reject" }),
|
||||
"second: 60 is rejected in property bag for PlainTime with overflow: reject"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaintime.prototype.equals
|
||||
description: Leap second is a valid ISO string for PlainTime
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainTime(23, 59, 59);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result1,
|
||||
true,
|
||||
"leap second is a valid ISO string for PlainTime"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.equals(arg);
|
||||
assert.sameValue(
|
||||
result2,
|
||||
true,
|
||||
"second: 60 is ignored in property bag for PlainTime"
|
||||
);
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaintime.prototype.since
|
||||
description: Leap second is a valid ISO string for PlainTime
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainTime(23, 59, 59);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.since(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result1,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for PlainTime"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.since(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result2,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"second: 60 is ignored in property bag for PlainTime"
|
||||
);
|
|
@ -0,0 +1,29 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaintime.prototype.toplaindatetime
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainTime(12, 34, 56, 987, 654, 321);
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.toPlainDateTime(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result1,
|
||||
1976, 11, "M11", 18, 12, 34, 56, 987, 654, 321,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.toPlainDateTime(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result2,
|
||||
1976, 11, "M11", 18, 12, 34, 56, 987, 654, 321,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaintime.prototype.toplaindatetime
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainTime(12, 34, 56, 987, 654, 321);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.toPlainDateTime(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result1,
|
||||
2016, 12, "M12", 31, 12, 34, 56, 987, 654, 321,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.toPlainDateTime(arg);
|
||||
TemporalHelpers.assertPlainDateTime(
|
||||
result2,
|
||||
2016, 12, "M12", 31, 12, 34, 56, 987, 654, 321,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
|
@ -0,0 +1,28 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaintime.prototype.tozoneddatetime
|
||||
description: Leap second is a valid ISO string for a calendar in a property bag
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainTime(12, 34, 56, 987, 654, 321);
|
||||
|
||||
const calendar = "2016-12-31T23:59:60";
|
||||
|
||||
let arg = { year: 1976, monthCode: "M11", day: 18, calendar };
|
||||
const result1 = instance.toZonedDateTime({ plainDate: arg, timeZone: "UTC" });
|
||||
assert.sameValue(
|
||||
result1.epochNanoseconds,
|
||||
217_168_496_987_654_321n,
|
||||
"leap second is a valid ISO string for calendar"
|
||||
);
|
||||
|
||||
arg = { year: 1976, monthCode: "M11", day: 18, calendar: { calendar } };
|
||||
const result2 = instance.toZonedDateTime({ plainDate: arg, timeZone: "UTC" });
|
||||
assert.sameValue(
|
||||
result2.epochNanoseconds,
|
||||
217_168_496_987_654_321n,
|
||||
"leap second is a valid ISO string for calendar (nested property)"
|
||||
);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaintime.prototype.tozoneddatetime
|
||||
description: Leap second is a valid ISO string for PlainDate
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainTime(12, 34, 56, 987, 654, 321);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.toZonedDateTime({ plainDate: arg, timeZone: "UTC" });
|
||||
assert.sameValue(
|
||||
result1.epochNanoseconds,
|
||||
1_483_187_696_987_654_321n,
|
||||
"leap second is a valid ISO string for PlainDate"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.toZonedDateTime({ plainDate: arg, timeZone: "UTC" });
|
||||
assert.sameValue(
|
||||
result2.epochNanoseconds,
|
||||
1_483_187_696_987_654_321n,
|
||||
"second: 60 is ignored in property bag for PlainDate"
|
||||
);
|
20
test/built-ins/Temporal/PlainTime/prototype/toZonedDateTime/timezone-string-leap-second.js
vendored
Normal file
20
test/built-ins/Temporal/PlainTime/prototype/toZonedDateTime/timezone-string-leap-second.js
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaintime.prototype.tozoneddatetime
|
||||
description: Leap second is a valid ISO string for TimeZone
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainTime();
|
||||
let timeZone = "2016-12-31T23:59:60+00:00[UTC]";
|
||||
|
||||
const result1 = instance.toZonedDateTime({ plainDate: new Temporal.PlainDate(2000, 5, 2), timeZone });
|
||||
assert.sameValue(result1.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone");
|
||||
const result2 = instance.toZonedDateTime({ plainDate: new Temporal.PlainDate(2000, 5, 2), timeZone: { timeZone } });
|
||||
assert.sameValue(result2.timeZone.id, "UTC", "leap second is a valid ISO string for TimeZone (nested property)");
|
||||
|
||||
timeZone = "2021-08-19T17:30:45.123456789+23:59[+23:59:60]";
|
||||
assert.throws(RangeError, () => instance.toZonedDateTime({ plainDate: new Temporal.PlainDate(2000, 5, 2), timeZone }), "leap second in time zone name not valid");
|
||||
assert.throws(RangeError, () => instance.toZonedDateTime({ plainDate: new Temporal.PlainDate(2000, 5, 2), timeZone: { timeZone } }), "leap second in time zone name not valid (nested property)");
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
esid: sec-temporal.plaintime.prototype.until
|
||||
description: Leap second is a valid ISO string for PlainTime
|
||||
includes: [temporalHelpers.js]
|
||||
features: [Temporal]
|
||||
---*/
|
||||
|
||||
const instance = new Temporal.PlainTime(23, 59, 59);
|
||||
|
||||
let arg = "2016-12-31T23:59:60";
|
||||
const result1 = instance.until(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result1,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"leap second is a valid ISO string for PlainTime"
|
||||
);
|
||||
|
||||
arg = { year: 2016, month: 12, day: 31, hour: 23, minute: 59, second: 60 };
|
||||
const result2 = instance.until(arg);
|
||||
TemporalHelpers.assertDuration(
|
||||
result2,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
"second: 60 is ignored in property bag for PlainTime"
|
||||
);
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue