summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Locale/prototype/getCalendars
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/intl402/Locale/prototype/getCalendars')
-rw-r--r--js/src/tests/test262/intl402/Locale/prototype/getCalendars/branding.js30
-rw-r--r--js/src/tests/test262/intl402/Locale/prototype/getCalendars/browser.js0
-rw-r--r--js/src/tests/test262/intl402/Locale/prototype/getCalendars/name.js23
-rw-r--r--js/src/tests/test262/intl402/Locale/prototype/getCalendars/output-array.js19
-rw-r--r--js/src/tests/test262/intl402/Locale/prototype/getCalendars/prop-desc.js28
-rw-r--r--js/src/tests/test262/intl402/Locale/prototype/getCalendars/shell.js0
6 files changed, 100 insertions, 0 deletions
diff --git a/js/src/tests/test262/intl402/Locale/prototype/getCalendars/branding.js b/js/src/tests/test262/intl402/Locale/prototype/getCalendars/branding.js
new file mode 100644
index 0000000000..b96024e71e
--- /dev/null
+++ b/js/src/tests/test262/intl402/Locale/prototype/getCalendars/branding.js
@@ -0,0 +1,30 @@
+// |reftest| skip -- Intl.Locale-info is not supported
+// Copyright 2023 Google Inc. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-Intl.Locale.prototype.getCalendars
+description: Verifies the branding check for the "getCalendars" function of the Locale prototype object.
+info: |
+ Intl.Locale.prototype.getCalendars ()
+
+ 2. Perform ? RequireInternalSlot(loc, [[InitializedLocale]]).
+
+features: [Intl.Locale,Intl.Locale-info]
+---*/
+
+const getCalendars = Intl.Locale.prototype.getCalendars;
+
+assert.sameValue(typeof getCalendars, "function");
+
+assert.throws(TypeError, () => getCalendars.call(undefined), "undefined");
+assert.throws(TypeError, () => getCalendars.call(null), "null");
+assert.throws(TypeError, () => getCalendars.call(true), "true");
+assert.throws(TypeError, () => getCalendars.call(""), "empty string");
+assert.throws(TypeError, () => getCalendars.call(Symbol()), "symbol");
+assert.throws(TypeError, () => getCalendars.call(1), "1");
+assert.throws(TypeError, () => getCalendars.call({}), "plain object");
+assert.throws(TypeError, () => getCalendars.call(Intl.Locale), "Intl.Locale");
+assert.throws(TypeError, () => getCalendars.call(Intl.Locale.prototype), "Intl.Locale.prototype");
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/intl402/Locale/prototype/getCalendars/browser.js b/js/src/tests/test262/intl402/Locale/prototype/getCalendars/browser.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/intl402/Locale/prototype/getCalendars/browser.js
diff --git a/js/src/tests/test262/intl402/Locale/prototype/getCalendars/name.js b/js/src/tests/test262/intl402/Locale/prototype/getCalendars/name.js
new file mode 100644
index 0000000000..faf5e8f723
--- /dev/null
+++ b/js/src/tests/test262/intl402/Locale/prototype/getCalendars/name.js
@@ -0,0 +1,23 @@
+// |reftest| skip -- Intl.Locale-info is not supported
+// Copyright 2023 Google Inc. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-Intl.Locale.prototype.getCalendars
+description: Checks the "name" property of Intl.Locale.prototype.getCalendars().
+info: |
+ Unless specified otherwise in this document, the objects, functions, and constructors described in this standard are subject to the generic requirements and restrictions specified for standard built-in ECMAScript objects in the ECMAScript 2019 Language Specification, 10th edition, clause 17, or successor.
+ Every built-in function object, including constructors, that is not identified as an anonymous function has a name property whose value is a String. Unless otherwise specified, this value is the name that is given to the function in this specification.
+ Unless otherwise specified, the name property of a built-in function object, if it exists, has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }.
+includes: [propertyHelper.js]
+features: [Intl.Locale,Intl.Locale-info]
+---*/
+
+verifyProperty(Intl.Locale.prototype.getCalendars, "name", {
+ value: "getCalendars",
+ writable: false,
+ enumerable: false,
+ configurable: true,
+});
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/intl402/Locale/prototype/getCalendars/output-array.js b/js/src/tests/test262/intl402/Locale/prototype/getCalendars/output-array.js
new file mode 100644
index 0000000000..d52bca8fc9
--- /dev/null
+++ b/js/src/tests/test262/intl402/Locale/prototype/getCalendars/output-array.js
@@ -0,0 +1,19 @@
+// |reftest| skip -- Intl.Locale-info is not supported
+// Copyright 2021 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-intl.locale.prototype.getCalendars
+description: >
+ Checks that the return value of Intl.Locale.prototype.getCalendars is an Array.
+info: |
+ CalendarsOfLocale ( loc )
+ ...
+ 5. Return ! CreateArrayFromListAndPreferred( list, preferred ).
+features: [Intl.Locale,Intl.Locale-info]
+---*/
+
+assert(Array.isArray(new Intl.Locale('en').getCalendars()));
+assert(new Intl.Locale('en').getCalendars().length > 0, 'array has at least one element');
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/intl402/Locale/prototype/getCalendars/prop-desc.js b/js/src/tests/test262/intl402/Locale/prototype/getCalendars/prop-desc.js
new file mode 100644
index 0000000000..87cf922ef0
--- /dev/null
+++ b/js/src/tests/test262/intl402/Locale/prototype/getCalendars/prop-desc.js
@@ -0,0 +1,28 @@
+// |reftest| skip -- Intl.Locale-info is not supported
+// Copyright 2023 Google Inc. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-Intl.Locale.prototype.getCalendars
+description: Checks the "getCalendars" property of the Locale prototype object.
+info: |
+ Intl.Locale.prototype.getCalendars ()
+ Unless specified otherwise in this document, the objects, functions, and constructors described in this standard are subject to the generic requirements and restrictions specified for standard built-in ECMAScript objects in the ECMAScript 2019 Language Specification, 10th edition, clause 17, or successor.
+ Every other data property described in clauses 18 through 26 and in Annex B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true } unless otherwise specified.
+includes: [propertyHelper.js]
+features: [Intl.Locale,Intl.Locale-info]
+---*/
+
+assert.sameValue(
+ typeof Intl.Locale.prototype.getCalendars,
+ "function",
+ "typeof Intl.Locale.prototype.getCalendars is function"
+);
+
+verifyProperty(Intl.Locale.prototype, "getCalendars", {
+ writable: true,
+ enumerable: false,
+ configurable: true,
+});
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/intl402/Locale/prototype/getCalendars/shell.js b/js/src/tests/test262/intl402/Locale/prototype/getCalendars/shell.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/intl402/Locale/prototype/getCalendars/shell.js