diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /js/src/jsapi-tests/testIntlAvailableLocales.cpp | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/jsapi-tests/testIntlAvailableLocales.cpp')
-rw-r--r-- | js/src/jsapi-tests/testIntlAvailableLocales.cpp | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/js/src/jsapi-tests/testIntlAvailableLocales.cpp b/js/src/jsapi-tests/testIntlAvailableLocales.cpp new file mode 100644 index 0000000000..9a31a8cc0b --- /dev/null +++ b/js/src/jsapi-tests/testIntlAvailableLocales.cpp @@ -0,0 +1,78 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * vim: set ts=8 sts=2 et sw=2 tw=80: + */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "js/LocaleSensitive.h" +#include "jsapi-tests/tests.h" + +BEGIN_TEST(testIntlAvailableLocales) { + JSRuntime* rt = JS_GetRuntime(cx); + + // This test should only attempt to run if we have Intl support. + JS::Rooted<JS::Value> haveIntl(cx); + EVAL("typeof Intl !== 'undefined'", &haveIntl); + if (!haveIntl.toBoolean()) { + return true; + } + + // Assumption: our Intl support always includes "de" (German) support, + // and our Intl support *does not* natively support de-ZA-ghijk. :-) + CHECK(JS_SetDefaultLocale(rt, "de-ZA-abcde-x-private")); + + EXEC( + "if (Intl.Collator().resolvedOptions().locale !== " + "'de-ZA-abcde-x-private') \n" + " throw 'unexpected default locale';"); + EXEC( + "var used = Intl.Collator('de-ZA-abcde').resolvedOptions().locale; \n" + "if (used !== 'de-ZA-abcde') \n" + " throw 'bad locale when using truncated default: ' + used;"); + EXEC( + "if (Intl.Collator('de-ZA').resolvedOptions().locale !== 'de-ZA') \n" + " throw 'bad locale when using more-truncated default';"); + EXEC( + "if (Intl.Collator('de-ZA-ghijk').resolvedOptions().locale !== 'de-ZA') " + "\n" + " throw 'unexpected default locale';"); + + EXEC( + "if (Intl.Collator('de-ZA-abcde-x-private', { localeMatcher: 'lookup' " + "}).resolvedOptions().locale !== \n" + " 'de-ZA-abcde-x-private') \n" + "{ \n" + " throw 'unexpected default locale with lookup matcher'; \n" + "}"); + EXEC( + "if (Intl.Collator('de-ZA-abcde').resolvedOptions().locale !== " + "'de-ZA-abcde') \n" + " throw 'bad locale when using truncated default';"); + EXEC( + "if (Intl.Collator('de-ZA').resolvedOptions().locale !== 'de-ZA') \n" + " throw 'bad locale when using more-truncated default';"); + EXEC( + "if (Intl.Collator('de').resolvedOptions().locale !== 'de') \n" + " throw 'bad locale when using most-truncated default';"); + + CHECK(JS_SetDefaultLocale(rt, "en-US-u-co-phonebk")); + EXEC( + "if (Intl.Collator().resolvedOptions().locale !== 'en-US') \n" + " throw 'unexpected default locale where proposed default included a " + "Unicode extension';"); + + CHECK(JS_SetDefaultLocale(rt, "this is not a language tag at all, yo")); + + EXEC( + "if (Intl.Collator().resolvedOptions().locale !== 'en-GB') \n" + " throw 'unexpected last-ditch locale';"); + EXEC( + "if (Intl.Collator('en-GB').resolvedOptions().locale !== 'en-GB') \n" + " throw 'unexpected used locale when specified, with last-ditch " + "locale as default';"); + + JS_ResetDefaultLocale(rt); + return true; +} +END_TEST(testIntlAvailableLocales) |