summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Temporal/PlainDate/prototype
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/intl402/Temporal/PlainDate/prototype')
-rw-r--r--js/src/tests/test262/intl402/Temporal/PlainDate/prototype/equals/shell.js8
-rw-r--r--js/src/tests/test262/intl402/Temporal/PlainDate/prototype/since/shell.js8
-rw-r--r--js/src/tests/test262/intl402/Temporal/PlainDate/prototype/toLocaleString/dateStyle.js34
-rw-r--r--js/src/tests/test262/intl402/Temporal/PlainDate/prototype/until/shell.js8
-rw-r--r--js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/browser.js0
-rw-r--r--js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/gregory-iso-weekofyear.js30
-rw-r--r--js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/non-iso-week-of-year.js25
-rw-r--r--js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/shell.js0
-rw-r--r--js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/browser.js0
-rw-r--r--js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/gregory-iso-weekofyear.js30
-rw-r--r--js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/non-iso-week-of-year.js25
-rw-r--r--js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/shell.js0
12 files changed, 168 insertions, 0 deletions
diff --git a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/equals/shell.js b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/equals/shell.js
index 60f74c2518..5265d86aa2 100644
--- a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/equals/shell.js
+++ b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/equals/shell.js
@@ -2022,6 +2022,9 @@ var TemporalHelpers = {
"11-18junk",
"11-18[u-ca=gregory]",
"11-18[u-ca=hebrew]",
+ "11-18[U-CA=iso8601]",
+ "11-18[u-CA=iso8601]",
+ "11-18[FOO=bar]",
];
},
@@ -2109,6 +2112,11 @@ var TemporalHelpers = {
plainYearMonthStringsInvalid() {
return [
"2020-13",
+ "1976-11[u-ca=gregory]",
+ "1976-11[u-ca=hebrew]",
+ "1976-11[U-CA=iso8601]",
+ "1976-11[u-CA=iso8601]",
+ "1976-11[FOO=bar]",
];
},
diff --git a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/since/shell.js b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/since/shell.js
index 60f74c2518..5265d86aa2 100644
--- a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/since/shell.js
+++ b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/since/shell.js
@@ -2022,6 +2022,9 @@ var TemporalHelpers = {
"11-18junk",
"11-18[u-ca=gregory]",
"11-18[u-ca=hebrew]",
+ "11-18[U-CA=iso8601]",
+ "11-18[u-CA=iso8601]",
+ "11-18[FOO=bar]",
];
},
@@ -2109,6 +2112,11 @@ var TemporalHelpers = {
plainYearMonthStringsInvalid() {
return [
"2020-13",
+ "1976-11[u-ca=gregory]",
+ "1976-11[u-ca=hebrew]",
+ "1976-11[U-CA=iso8601]",
+ "1976-11[u-CA=iso8601]",
+ "1976-11[FOO=bar]",
];
},
diff --git a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/toLocaleString/dateStyle.js b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/toLocaleString/dateStyle.js
new file mode 100644
index 0000000000..0bb42308d5
--- /dev/null
+++ b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/toLocaleString/dateStyle.js
@@ -0,0 +1,34 @@
+// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
+// Copyright (C) 2024 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-temporal.plaindate.prototype.tolocalestring
+description: Basic tests that dateStyle option affects output
+locale: [en-u-ca-gregory, en-u-ca-islamic]
+features: [Temporal, Intl.DateTimeFormat-datetimestyle]
+---*/
+
+const dateGregorian = new Temporal.PlainDate(2024, 3, 26, "gregory");
+
+assert(
+ dateGregorian.toLocaleString("en-u-ca-gregory", { dateStyle: "long" }).includes("March"),
+ "dateStyle: long writes month of March out in full"
+);
+assert(
+ !dateGregorian.toLocaleString("en-u-ca-gregory", { dateStyle: "short" }).includes("March"),
+ "dateStyle: short does not write month of March out in full"
+);
+
+const dateIslamic = new Temporal.PlainDate(2024, 3, 26, "islamic");
+
+assert(
+ dateIslamic.toLocaleString("en-u-ca-islamic", { dateStyle: "long" }).includes("Ramadan"),
+ "dateStyle: long writes month of Ramadan out in full"
+);
+assert(
+ !dateIslamic.toLocaleString("en-u-ca-islamic", { dateStyle: "short" }).includes("Ramadan"),
+ "dateStyle: short does not write month of Ramadan out in full"
+);
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/until/shell.js b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/until/shell.js
index 60f74c2518..5265d86aa2 100644
--- a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/until/shell.js
+++ b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/until/shell.js
@@ -2022,6 +2022,9 @@ var TemporalHelpers = {
"11-18junk",
"11-18[u-ca=gregory]",
"11-18[u-ca=hebrew]",
+ "11-18[U-CA=iso8601]",
+ "11-18[u-CA=iso8601]",
+ "11-18[FOO=bar]",
];
},
@@ -2109,6 +2112,11 @@ var TemporalHelpers = {
plainYearMonthStringsInvalid() {
return [
"2020-13",
+ "1976-11[u-ca=gregory]",
+ "1976-11[u-ca=hebrew]",
+ "1976-11[U-CA=iso8601]",
+ "1976-11[u-CA=iso8601]",
+ "1976-11[FOO=bar]",
];
},
diff --git a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/browser.js b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/browser.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/browser.js
diff --git a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/gregory-iso-weekofyear.js b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/gregory-iso-weekofyear.js
new file mode 100644
index 0000000000..312d87afd6
--- /dev/null
+++ b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/gregory-iso-weekofyear.js
@@ -0,0 +1,30 @@
+// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
+// Copyright (C) 2024 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-temporal.plaindate.prototype.weekofyear
+description: >
+ In the ISO 8601 week calendar, calendar week number 1 of a calendar year is
+ the week including the first Thursday of that year (based on the principle
+ that a week belongs to the same calendar year as the majority of its calendar
+ days). Because of this, some calendar days of the first calendar week of a
+ calendar year may be part of the preceding date calendar year, and some
+ calendar days of the last calendar week of a calendar year may be part of
+ the next calendar year.
+features: [Temporal]
+---*/
+
+//
+
+let calendar = new Temporal.Calendar("gregory");
+const date = new Temporal.PlainDate(2021, 1, 1, calendar);
+
+assert.sameValue(date.weekOfYear, 1);
+
+calendar = new Temporal.Calendar("iso8601");
+const isodate = new Temporal.PlainDate(2021, 1, 1, calendar);
+
+assert.sameValue(isodate.weekOfYear, 53);
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/non-iso-week-of-year.js b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/non-iso-week-of-year.js
new file mode 100644
index 0000000000..b9717b8eba
--- /dev/null
+++ b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/non-iso-week-of-year.js
@@ -0,0 +1,25 @@
+// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
+// Copyright (C) 2024 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-temporal.plaindate.prototype.weekofyear
+description: >
+ Temporal.PlainDate.prototype.weekOfYear returns undefined for all
+ non-ISO calendars without a well-defined week numbering system.
+features: [Temporal]
+---*/
+
+// Gregorian calendar has a well defined week-numbering system.
+
+let calendar = new Temporal.Calendar("gregory");
+const date = new Temporal.PlainDate(2024, 1, 1, calendar);
+
+assert.sameValue(date.weekOfYear, 1);
+
+calendar = new Temporal.Calendar("hebrew");
+const nonisodate = new Temporal.PlainDate(2024, 1, 1, calendar);
+
+assert.sameValue(nonisodate.weekOfYear, undefined);
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/shell.js b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/shell.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/weekOfYear/shell.js
diff --git a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/browser.js b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/browser.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/browser.js
diff --git a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/gregory-iso-weekofyear.js b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/gregory-iso-weekofyear.js
new file mode 100644
index 0000000000..d8556f309a
--- /dev/null
+++ b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/gregory-iso-weekofyear.js
@@ -0,0 +1,30 @@
+// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
+// Copyright (C) 2024 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-temporal.plaindate.prototype.yearofweek
+description: >
+ In the ISO 8601 week calendar, calendar week number 1 of a calendar year is
+ the week including the first Thursday of that year (based on the principle
+ that a week belongs to the same calendar year as the majority of its calendar
+ days). Because of this, some calendar days of the first calendar week of a
+ calendar year may be part of the preceding date calendar year, and some
+ calendar days of the last calendar week of a calendar year may be part of
+ the next calendar year.
+features: [Temporal]
+---*/
+
+//
+
+let calendar = new Temporal.Calendar("gregory");
+const date = new Temporal.PlainDate(2021, 1, 1, calendar);
+
+assert.sameValue(date.yearOfWeek, 2021);
+
+calendar = new Temporal.Calendar("iso8601");
+const isodate = new Temporal.PlainDate(2021, 1, 1, calendar);
+
+assert.sameValue(isodate.yearOfWeek, 2020);
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/non-iso-week-of-year.js b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/non-iso-week-of-year.js
new file mode 100644
index 0000000000..047166e765
--- /dev/null
+++ b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/non-iso-week-of-year.js
@@ -0,0 +1,25 @@
+// |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally
+// Copyright (C) 2024 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-temporal.plaindate.prototype.yearofweek
+description: >
+ Temporal.PlainDate.prototype.yearOfWeek returns undefined for all
+ non-ISO calendars without a well-defined week numbering system.
+features: [Temporal]
+---*/
+
+// Gregorian calendar has a well defined week-numbering system.
+
+let calendar = new Temporal.Calendar("gregory");
+const date = new Temporal.PlainDate(2024, 1, 1, calendar);
+
+assert.sameValue(date.yearOfWeek, 2024);
+
+calendar = new Temporal.Calendar("hebrew");
+const nonisodate = new Temporal.PlainDate(2024, 1, 1, calendar);
+
+assert.sameValue(nonisodate.yearOfWeek, undefined);
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/shell.js b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/shell.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/intl402/Temporal/PlainDate/prototype/yearOfWeek/shell.js