summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Intl/supportedValuesOf-collation.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/tests/non262/Intl/supportedValuesOf-collation.js
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--js/src/tests/non262/Intl/supportedValuesOf-collation.js44
1 files changed, 44 insertions, 0 deletions
diff --git a/js/src/tests/non262/Intl/supportedValuesOf-collation.js b/js/src/tests/non262/Intl/supportedValuesOf-collation.js
new file mode 100644
index 0000000000..626bb28c20
--- /dev/null
+++ b/js/src/tests/non262/Intl/supportedValuesOf-collation.js
@@ -0,0 +1,44 @@
+// |reftest| skip-if(!this.hasOwnProperty("Intl"))
+
+const collations = Intl.supportedValuesOf("collation");
+
+assertEq(new Set(collations).size, collations.length, "No duplicates are present");
+assertEqArray(collations, [...collations].sort(), "The list is sorted");
+
+const typeRE = /^[a-z0-9]{3,8}(-[a-z0-9]{3,8})*$/;
+for (let collation of collations) {
+ assertEq(typeRE.test(collation), true, `${collation} matches the 'type' production`);
+}
+
+for (let collation of collations) {
+ assertEq(new Intl.Locale("und", {collation}).collation, collation, `${collation} is canonicalised`);
+}
+
+// Not all locales support all possible collations, so test the minimal set to
+// cover all supported collations.
+const locales = [
+ "en", // "emoji", "eor"
+ "ar", // compat
+ "de", // phonebk
+ "es", // trad
+ "ko", // searchjl
+ "ln", // phonetic
+ "si", // dict
+ "sv", // reformed
+ "zh", // big5han, gb2312, pinyin, stroke, unihan, zhuyin
+];
+
+for (let collation of collations) {
+ let supported = false;
+ for (let locale of locales) {
+ let obj = new Intl.Collator(locale, {collation});
+ if (obj.resolvedOptions().collation === collation) {
+ supported = true;
+ }
+ }
+
+ assertEq(supported, true, `${collation} is supported by Collator`);
+}
+
+if (typeof reportCompare === "function")
+ reportCompare(true, true);