summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Temporal/TimeZone/etc-timezone.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/intl402/Temporal/TimeZone/etc-timezone.js')
-rw-r--r--js/src/tests/test262/intl402/Temporal/TimeZone/etc-timezone.js69
1 files changed, 69 insertions, 0 deletions
diff --git a/js/src/tests/test262/intl402/Temporal/TimeZone/etc-timezone.js b/js/src/tests/test262/intl402/Temporal/TimeZone/etc-timezone.js
new file mode 100644
index 0000000000..7703f6b58f
--- /dev/null
+++ b/js/src/tests/test262/intl402/Temporal/TimeZone/etc-timezone.js
@@ -0,0 +1,69 @@
+// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
+// 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.timezone
+description: Some Etc/GMT{+/-}{0}N timezones are valid, but not all
+features: [Temporal]
+---*/
+
+// "Etc/GMT-0" through "Etc/GMT-14" are OK
+
+[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14].forEach((n) => {
+ let tz = "Etc/GMT-" + n;
+ let instance = new Temporal.TimeZone(tz);
+ assert.sameValue(
+ instance.toString(),
+ tz,
+ tz + " is a valid timezone"
+ );
+});
+
+let gmtMinus24TZ = "Etc/GMT-24";
+assert.throws(
+ RangeError,
+ () => { new Temporal.TimeZone(gmtMinus24TZ); },
+ gmtMinus24TZ + " is an invalid timezone"
+);
+
+// "Etc/GMT-0N" is not OK (1 ≤ N ≤ 9)
+[1,2,3,4,5,6,7,8,9].forEach((n) => {
+ let tz = "Etc/GMT-0" + n;
+ assert.throws(
+ RangeError,
+ () => { new Temporal.TimeZone(tz); },
+ tz + " is an invalid timezone"
+ );
+});
+
+// "Etc/GMT+0N" is not OK (0 ≤ N ≤ 9)
+[0,1,2,3,4,5,6,7,8,9].forEach((n) => {
+ let tz = "Etc/GMT+0" + n;
+ assert.throws(
+ RangeError,
+ () => { new Temporal.TimeZone(tz); },
+ tz + " is an invalid timezone"
+ );
+});
+
+// Etc/GMT+0" through "Etc/GMT+12" are OK
+
+[0,1,2,3,4,5,6,7,8,9,10,11,12].forEach((n) => {
+ let tz = "Etc/GMT+" + n;
+ let instance = new Temporal.TimeZone(tz);
+ assert.sameValue(
+ instance.toString(),
+ tz,
+ tz + " is a valid timezone"
+ );
+});
+
+let gmtPlus24TZ = "Etc/GMT+24";
+assert.throws(
+ RangeError,
+ () => { new Temporal.TimeZone(gmtPlus24TZ); },
+ gmtPlus24TZ + " is an invalid timezone"
+);
+
+reportCompare(0, 0);