Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a test verifying that duplicate variants in the tlang component of a language tag make it structurally invalid #2858

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions test/intl402/Locale/reject-duplicate-variants-in-tlang.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// Copyright 2020 Jeff Walden, Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-isstructurallyvalidlanguagetag
description: >
Verifies that just as duplicate variants in a tag ("en-emodeng-emodeng") make
the tag structurally invalid, so too do duplicate variants in the tlang
component of an otherwise structurally valid tag ("de-t-emodeng-emodeng"),
make it structurally invalid.
info: |
if a `transformed_extensions` component that contains a `tlang` component is
present, then
the `tlang` component contains no duplicate `unicode_variant_subtag`
subtags.
features: [Intl.Locale]
---*/

assert.sameValue(typeof Intl.Locale, "function");

function mustReject(tag) {
assert.throws(RangeError, () => {
// Direct matches are rejected.
new Intl.Locale(tag);
}, `tag "${tag}" must be considered structurally invalid`);
}

// BCP47 since forever, and ECMA-402 as consequence, do not consider tags that
// contain duplicate variants to be structurally valid. This restriction also
// applies within the |tlang| component (indicating the source locale from which
// relevant content was transformed) of a broader language tag.

// Direct matches are rejected.
mustReject("de-t-en-emodeng-emodeng");
// Case-insensitive matches are also rejected.
mustReject("de-t-en-Emodeng-emodeng");
// ...and in either order.
mustReject("de-t-en-emodeng-Emodeng");

// Repeat the above tests with additional variants interspersed at each point
// for completeness.
mustReject("de-t-en-variant-emodeng-emodeng");
mustReject("de-t-en-variant-Emodeng-emodeng");
mustReject("de-t-en-variant-emodeng-Emodeng");
mustReject("de-t-en-emodeng-variant-emodeng");
mustReject("de-t-en-Emodeng-variant-emodeng");
mustReject("de-t-en-emodeng-variant-Emodeng");
mustReject("de-t-en-emodeng-emodeng-variant");
mustReject("de-t-en-Emodeng-emodeng-variant");
mustReject("de-t-en-emodeng-Emodeng-variant");
44 changes: 44 additions & 0 deletions test/intl402/Locale/reject-duplicate-variants.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// Copyright 2020 Jeff Walden, Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-isstructurallyvalidlanguagetag
description: >
Verifies that duplicate variants in a tag ("en-emodeng-emodeng") make the tag
structurally invalid.
info: |
the `unicode_language_id` within _locale_ contains no duplicate
`unicode_variant_subtag` subtags
features: [Intl.Locale]
---*/

assert.sameValue(typeof Intl.Locale, "function");

function mustReject(tag) {
assert.throws(RangeError, () => {
// Direct matches are rejected.
new Intl.Locale(tag);
}, `tag "${tag}" must be considered structurally invalid`);
}

// BCP47 since forever, and ECMA-402 as consequence, do not consider tags that
// contain duplicate variants to be structurally valid.

// Direct matches are rejected.
mustReject("en-emodeng-emodeng");
// Case-insensitive matches are also rejected.
mustReject("en-Emodeng-emodeng");
// ...and in either order.
mustReject("en-emodeng-Emodeng");

// Repeat the above tests with additional variants interspersed at each point
// for completeness.
mustReject("en-variant-emodeng-emodeng");
mustReject("en-variant-Emodeng-emodeng");
mustReject("en-variant-emodeng-Emodeng");
mustReject("en-emodeng-variant-emodeng");
mustReject("en-Emodeng-variant-emodeng");
mustReject("en-emodeng-variant-Emodeng");
mustReject("en-emodeng-emodeng-variant");
mustReject("en-Emodeng-emodeng-variant");
mustReject("en-emodeng-Emodeng-variant");