Skip to content

Commit d994a93

Browse files
committedJun 27, 2024
Temporal: Port staging tests that use next/previousTransition
See: tc39/proposal-temporal#2826
1 parent f8c75fc commit d994a93

File tree

10 files changed

+68
-94
lines changed

10 files changed

+68
-94
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Copyright (C) 2024 Igalia, S.L. All rights reserved.
2+
// This code is governed by the BSD license found in the LICENSE file.
3+
4+
/*---
5+
esid: sec-temporal.zoneddatetime.prototype.gettimezonetransition
6+
description: An offset time zone has no transitions.
7+
features: [Temporal]
8+
---*/
9+
10+
const zdt = new Temporal.ZonedDateTime(0n, "-10:00");
11+
assert.sameValue(zdt.getTimeZoneTransition("next"), null, "An offset time zone has no next transition");
12+
assert.sameValue(zdt.getTimeZoneTransition("previous"), null, "An offset time zone has no previous transition");
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Copyright (C) 2024 Igalia, S.L. All rights reserved.
2+
// This code is governed by the BSD license found in the LICENSE file.
3+
4+
/*---
5+
esid: sec-temporal.zoneddatetime.prototype.gettimezonetransition
6+
description: The UTC time zone has no transitions.
7+
features: [Temporal]
8+
---*/
9+
10+
const zdt = new Temporal.ZonedDateTime(0n, "UTC");
11+
assert.sameValue(zdt.getTimeZoneTransition("next"), null, "The UTC time zone has no next transition");
12+
assert.sameValue(zdt.getTimeZoneTransition("previous"), null, "The UTC time zone has no previous transition");
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Copyright (C) 2024 Igalia, S.L. All rights reserved.
2+
// This code is governed by the BSD license found in the LICENSE file.
3+
4+
/*---
5+
esid: sec-temporal.zoneddatetime.prototype.gettimezonetransition
6+
description: Next and previous transition in a named time zone has the correct return type
7+
features: [Temporal]
8+
---*/
9+
10+
let zdt = new Temporal.ZonedDateTime(0n, "America/Los_Angeles");
11+
for (let count = 0; count < 4; count++) {
12+
const transition = zdt.getTimeZoneTransition("next");
13+
assert(transition instanceof Temporal.ZonedDateTime, "getTimeZoneTransition(next) returns Temporal.ZonedDateTime");
14+
assert(!transition.equals(zdt), "getTimeZoneTransition(next) does not return its input");
15+
zdt = transition;
16+
}
17+
18+
zdt = new Temporal.ZonedDateTime(1_000_000_000_000_000_000n, "America/Los_Angeles");
19+
for (let count = 0; count < 4; count++) {
20+
const transition = zdt.getTimeZoneTransition("previous");
21+
assert(transition instanceof Temporal.ZonedDateTime, "getTimeZoneTransition(previous) returns Temporal.ZonedDateTime");
22+
assert(!transition.equals(zdt), "getTimeZoneTransition(previous) does not return its input");
23+
zdt = transition;
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright (C) 2024 Igalia, S.L. All rights reserved.
2+
// This code is governed by the BSD license found in the LICENSE file.
3+
4+
/*---
5+
esid: sec-temporal.zoneddatetime.prototype.gettimezonetransition
6+
description: Smoke test specific values from time zone database
7+
features: [Temporal]
8+
---*/
9+
10+
const a1 = new Temporal.ZonedDateTime(1555448460_000_000_000n /* = 2019-04-16T21:01Z */, "America/New_York");
11+
assert.sameValue(a1.getTimeZoneTransition("next").epochNanoseconds, 1572760800_000_000_000n /* = 2019-11-03T06:00:00Z */);
12+
13+
const a2 = new Temporal.ZonedDateTime(-5364662400_000_000_000n /* = 1800-01-01T00:00Z */, "America/New_York");
14+
assert.sameValue(a2.getTimeZoneTransition("next").epochNanoseconds, -2717650800_000_000_000n /* = 1883-11-18T17:00:00Z */);
15+
16+
const a3 = new Temporal.ZonedDateTime(1591909260_000_000_000n /* = 2020-06-11T21:01Z */, "Europe/London");
17+
assert.sameValue(a3.getTimeZoneTransition("previous").epochNanoseconds, 1585443600_000_000_000n /* = 2020-03-29T01:00:00Z */);
18+
19+
const a4 = new Temporal.ZonedDateTime(-3849984000_000_000_000n /* = 1848-01-01T00:00Z */, "Europe/London");
20+
assert.sameValue(a4.getTimeZoneTransition("previous").epochNanoseconds, -3852662325_000_000_000n, /* = 1847-12-01T00:01:15Z */);

‎test/staging/Intl402/Temporal/old/timezone-america-la.js

-12
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,3 @@ assert.sameValue(zone.id, `${ zone }`)
1414
assert.sameValue(zone.getOffsetNanosecondsFor(inst), -8 * 3600000000000)
1515
assert.sameValue(zone.getOffsetStringFor(inst), "-08:00")
1616
assert(zone.getInstantFor(dtm) instanceof Temporal.Instant)
17-
for (var i = 0, txn = inst; i < 4; i++) {
18-
var transition = zone.getNextTransition(txn);
19-
assert(transition instanceof Temporal.Instant);
20-
assert(!transition.equals(txn));
21-
txn = transition;
22-
}
23-
for (var i = 0, txn = inst; i < 4; i++) {
24-
var transition = zone.getPreviousTransition(txn);
25-
assert(transition instanceof Temporal.Instant);
26-
assert(!transition.equals(txn));
27-
txn = transition;
28-
}

‎test/staging/Intl402/Temporal/old/tzdb-transitions.js

-44
This file was deleted.

‎test/staging/Temporal/TimeZone/old/getNextTransition.js

-17
This file was deleted.

‎test/staging/Temporal/TimeZone/old/getPreviousTransition.js

-17
This file was deleted.

‎test/staging/Temporal/TimeZone/old/timezone-offset.js

-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ assert.sameValue(zone.id, `${ zone }`)
1414
assert.sameValue(zone.getOffsetNanosecondsFor(inst), 3600000000000)
1515
assert(zone.getPlainDateTimeFor(inst) instanceof Temporal.PlainDateTime)
1616
assert(zone.getInstantFor(dtm) instanceof Temporal.Instant)
17-
assert.sameValue(zone.getNextTransition(inst), null)
18-
assert.sameValue(zone.getPreviousTransition(inst), null)
1917

2018
// wraps around to the next day
2119
assert.sameValue(`${ zone.getPlainDateTimeFor(Temporal.Instant.from("2020-02-06T23:59Z")) }`, "2020-02-07T00:59:00")

‎test/staging/Temporal/TimeZone/old/timezone-utc-offset.js

-2
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,3 @@ assert.sameValue(zone.id, `${ zone }`)
1414
assert.sameValue(zone.getOffsetNanosecondsFor(inst), 0)
1515
assert(zone.getPlainDateTimeFor(inst) instanceof Temporal.PlainDateTime)
1616
assert(zone.getInstantFor(dtm) instanceof Temporal.Instant)
17-
assert.sameValue(zone.getNextTransition(inst), null)
18-
assert.sameValue(zone.getPreviousTransition(inst), null)

0 commit comments

Comments
 (0)