2021-09-29 21:48:22 +02:00
|
|
|
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
esid: sec-temporal.timezone.from
|
|
|
|
description: Conversion of ISO date-time strings to Temporal.TimeZone instances
|
|
|
|
features: [Temporal]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
let timeZone = "2021-08-19T17:30";
|
|
|
|
assert.throws(RangeError, () => Temporal.TimeZone.from(timeZone), "bare date-time string is not a time zone");
|
|
|
|
assert.throws(RangeError, () => Temporal.TimeZone.from({ timeZone }), "bare date-time string is not a time zone");
|
|
|
|
|
|
|
|
timeZone = "2021-08-19T17:30Z";
|
|
|
|
const result1 = Temporal.TimeZone.from(timeZone);
|
|
|
|
assert.sameValue(result1.id, "UTC", "date-time + Z is UTC time zone");
|
|
|
|
const result2 = Temporal.TimeZone.from({ timeZone });
|
|
|
|
assert.sameValue(result2.id, "UTC", "date-time + Z is UTC time zone (string in property bag)");
|
|
|
|
|
|
|
|
timeZone = "2021-08-19T17:30-07:00";
|
|
|
|
const result3 = Temporal.TimeZone.from(timeZone);
|
|
|
|
assert.sameValue(result3.id, "-07:00", "date-time + offset is the offset time zone");
|
|
|
|
const result4 = Temporal.TimeZone.from({ timeZone });
|
|
|
|
assert.sameValue(result4.id, "-07:00", "date-time + offset is the offset time zone (string in property bag)");
|
|
|
|
|
2022-01-12 02:46:21 +01:00
|
|
|
timeZone = "2021-08-19T17:30[UTC]";
|
2021-09-29 21:48:22 +02:00
|
|
|
const result5 = Temporal.TimeZone.from(timeZone);
|
2022-01-12 02:46:21 +01:00
|
|
|
assert.sameValue(result5.id, "UTC", "date-time + IANA annotation is the IANA time zone");
|
2021-09-29 21:48:22 +02:00
|
|
|
const result6 = Temporal.TimeZone.from({ timeZone });
|
2022-01-12 02:46:21 +01:00
|
|
|
assert.sameValue(result6.id, "UTC", "date-time + IANA annotation is the IANA time zone (string in property bag)");
|
2021-09-29 21:48:22 +02:00
|
|
|
|
2022-01-12 02:46:21 +01:00
|
|
|
timeZone = "2021-08-19T17:30Z[UTC]";
|
2021-09-29 21:48:22 +02:00
|
|
|
const result7 = Temporal.TimeZone.from(timeZone);
|
2022-01-12 02:46:21 +01:00
|
|
|
assert.sameValue(result7.id, "UTC", "date-time + Z + IANA annotation is the IANA time zone");
|
2021-09-29 21:48:22 +02:00
|
|
|
const result8 = Temporal.TimeZone.from({ timeZone });
|
2022-01-12 02:46:21 +01:00
|
|
|
assert.sameValue(result8.id, "UTC", "date-time + Z + IANA annotation is the IANA time zone (string in property bag)");
|
2021-09-29 21:48:22 +02:00
|
|
|
|
2022-01-12 02:46:21 +01:00
|
|
|
timeZone = "2021-08-19T17:30-07:00[UTC]";
|
2021-09-29 21:48:22 +02:00
|
|
|
const result9 = Temporal.TimeZone.from(timeZone);
|
2022-01-12 02:46:21 +01:00
|
|
|
assert.sameValue(result9.id, "UTC", "date-time + offset + IANA annotation is the IANA time zone");
|
2021-09-29 21:48:22 +02:00
|
|
|
const result10 = Temporal.TimeZone.from({ timeZone });
|
2022-01-12 02:46:21 +01:00
|
|
|
assert.sameValue(result10.id, "UTC", "date-time + offset + IANA annotation is the IANA time zone (string in property bag)");
|