v8/test/intl/localematcher/bestfit-known-locales.js
Frank Tang 91d5cc2fa9 Reland "[intl] Improve test coverage of "best fit" localeMatcher"
This is a reland of dd8845cd74

Original change's description:
> [intl] Improve test coverage of "best fit" localeMatcher
>
> https: //docs.google.com/document/d/1cPGfiihn76yj2iAomKcspPFyLLcnk3WkCiqceBQPQyk/edit#heading=h.cc9tt7s0iwsd
> Bug: v8:7051
> Change-Id: I8c35e859062c5bdb009334dd1b725751e6df2123
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2965481
> Reviewed-by: Shu-yu Guo <syg@chromium.org>
> Commit-Queue: Frank Tang <ftang@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#75228}

Bug: v8:7051
Change-Id: I9af13b8fdf7ec3de2ac24050074d13fcdef981c7
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2973648
Reviewed-by: Frank Tang <ftang@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Commit-Queue: Frank Tang <ftang@chromium.org>
Cr-Commit-Position: refs/heads/master@{#75280}
2021-06-21 17:37:31 +00:00

40 lines
1.5 KiB
JavaScript

// Copyright 2021 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --harmony_intl_best_fit_matcher
//
// Test the supportedLocales and resolvedOptions handle "zh-TW", "zh-Hant-TW",
// etc.
const intlObjs = [
Intl.Collator,
Intl.DateTimeFormat,
Intl.DisplayNames,
Intl.ListFormat,
Intl.NumberFormat,
Intl.PluralRules,
Intl.RelativeTimeFormat,
Intl.Segmenter,
];
let bestFitOpt = {localeMatcher: "best fit"};
let defaultLocale = (new Intl.NumberFormat()).resolvedOptions().locale;
intlObjs.forEach(function(obj) {
[{}, bestFitOpt].forEach(function(opt) {
// Test consistent between "zh-TW" and "zh-Hant-TW". Either both are
// supported or neither are supported.
assertEquals((obj.supportedLocalesOf(["zh-TW"], opt)).length,
(obj.supportedLocalesOf(["zh-Hant-TW"], opt)).length);
assertEquals((obj.supportedLocalesOf(["zh-MO"], opt)).length,
(obj.supportedLocalesOf(["zh-Hant-MO"], opt)).length);
assertEquals((obj.supportedLocalesOf(["zh-HK"], opt)).length,
(obj.supportedLocalesOf(["zh-Hant-HK"], opt)).length);
assertEquals((obj.supportedLocalesOf(["zh-CN"], opt)).length,
(obj.supportedLocalesOf(["zh-Hans-CN"], opt)).length);
assertEquals((obj.supportedLocalesOf(["zh-SG"], opt)).length,
(obj.supportedLocalesOf(["zh-Hans-SG"], opt)).length);
});
});