91d5cc2fa9
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}
47 lines
1.4 KiB
JavaScript
47 lines
1.4 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 based on
|
|
// https://github.com/unicode-org/cldr/blob/master/common/supplemental/languageInfo.xml
|
|
|
|
const intlObjs = [
|
|
Intl.Collator,
|
|
Intl.DateTimeFormat,
|
|
Intl.DisplayNames,
|
|
Intl.ListFormat,
|
|
Intl.NumberFormat,
|
|
Intl.RelativeTimeFormat,
|
|
Intl.PluralRules,
|
|
Intl.Segmenter,
|
|
];
|
|
|
|
|
|
function verifyResolvedLocale(obj, opt, l1, l2) {
|
|
let options = {}
|
|
options = Object.assign(options, opt);
|
|
if (obj == Intl.DisplayNames) {
|
|
options['type'] = "language";
|
|
}
|
|
let resolvedLocale = (new obj(l1, options)).resolvedOptions().locale;
|
|
assertTrue((l1 == resolvedLocale) ||
|
|
(l2 == resolvedLocale.substring(0, l2.length)));
|
|
}
|
|
|
|
let bestFitOpt = {localeMatcher: "best fit"};
|
|
let defaultLocale = (new Intl.NumberFormat()).resolvedOptions().locale;
|
|
intlObjs.forEach(function(obj) {
|
|
[{}, bestFitOpt].forEach(function(opt) {
|
|
print(obj);
|
|
verifyResolvedLocale(obj, opt, "co", "fr");
|
|
verifyResolvedLocale(obj, opt, "crs", "fr");
|
|
verifyResolvedLocale(obj, opt, "lb", "de");
|
|
verifyResolvedLocale(obj, opt, "gsw", "de");
|
|
verifyResolvedLocale(obj, opt, "btj", "ms");
|
|
verifyResolvedLocale(obj, opt, "bjn", "ms");
|
|
});
|
|
|
|
});
|