-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test invalid region tags in Intl.DisplayNames.prototype.of() (#3900)
- Loading branch information
Showing
1 changed file
with
83 additions
and
0 deletions.
There are no files selected for viewing
83 changes: 83 additions & 0 deletions
83
test/intl402/DisplayNames/prototype/of/type-region-invalid.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
// Copyright 2023 Igalia S.L. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-Intl.DisplayNames.prototype.of | ||
description: Throws a RangeError for invalid `region` codes | ||
info: | | ||
12.5.1 CanonicalCodeForDisplayNames ( code ) | ||
... | ||
2. If type is "region", then | ||
a. If code cannot be matched by the unicode_region_subtag Unicode locale nonterminal, throw a RangeError exception. | ||
b. Return the ASCII-uppercase of code. | ||
features: [Intl.DisplayNames] | ||
---*/ | ||
|
||
// https://unicode.org/reports/tr35/#unicode_region_subtag | ||
// unicode_region_subtag = (alpha{2} | digit{3}) ; | ||
|
||
var displayNames = new Intl.DisplayNames(undefined, {type: 'region'}); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('00'); | ||
}, 'insufficient length, numeric'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('a'); | ||
}, 'insufficient length, alpha'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('aaa'); | ||
}, 'excessive length, alpha'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('1111'); | ||
}, 'excessive length, numeric'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of(''); | ||
}, 'empty string'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('a01'); | ||
}, 'mixed alphanumeric (alpha first, length 3)'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('a1'); | ||
}, 'mixed alphanumeric (alpha first, length 2)'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('1a'); | ||
}, 'mixed alphanumeric (numeric first, length 2)'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('1a1'); | ||
}, 'mixed alphanumeric (numeric first, length 3)'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('-111'); | ||
}, 'leading separator (dash)'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('_111'); | ||
}, 'leading separator (underscore)'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('111-'); | ||
}, 'trailing separator (dash)'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('111-'); | ||
}, 'trailing separator (underscore)'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of(' aa'); | ||
}, 'leading space'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('aa '); | ||
}, 'trailing space'); | ||
|
||
assert.throws(RangeError, function() { | ||
displayNames.of('a c'); | ||
}, 'interstitial space'); |