-
Notifications
You must be signed in to change notification settings - Fork 469
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests to check the order of option readings and output keys in resolvedOptions of Intl.NumberFormat and PluralRules.
- Loading branch information
1 parent
1db9a49
commit 00d7ff5
Showing
4 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
test/intl402/NumberFormat/constructor-option-read-order.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,36 @@ | ||
/// Copyright 2023 the V8 project authors. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
esid: sec-initializenumberformat | ||
description: Checks the order of option read. | ||
features: [Intl.NumberFormat-v3] | ||
---*/ | ||
|
||
let optionKeys = Object.keys((new Intl.NumberFormat()).resolvedOptions()); | ||
let opt = {}; | ||
let readKeys = new Array(); | ||
// For each item returned by resolvedOptions of default, add a getter | ||
// to track the reading order. | ||
optionKeys.forEach((property) => | ||
Object.defineProperty(opt, property, { | ||
get() { | ||
readKeys[readKeys.length] = property; | ||
return undefined; | ||
}, | ||
})); | ||
let p = new Intl.NumberFormat(undefined, opt); | ||
assert.sameValue( | ||
'numberingSystem,' + | ||
'style,' + | ||
'notation,' + | ||
'minimumIntegerDigits,' + | ||
'minimumFractionDigits,' + | ||
'maximumFractionDigits,' + | ||
'roundingIncrement,' + | ||
'roundingMode,' + | ||
'roundingPriority,' + | ||
'trailingZeroDisplay,' + | ||
'useGrouping,' + | ||
'signDisplay', | ||
readKeys.toString()); |
23 changes: 23 additions & 0 deletions
23
test/intl402/NumberFormat/prototype/resolvedOptions/return-keys-order-default.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,23 @@ | ||
// Copyright 2023 the V8 project authors. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-intl.numberformat.prototype.resolvedoptions | ||
description: order of property keys for the object returned by resolvedOptions() | ||
features: [Intl.NumberFormat-v3] | ||
---*/ | ||
|
||
assert.sameValue( | ||
'locale,' + | ||
'numberingSystem,' + | ||
'style,' + | ||
'minimumIntegerDigits,' + | ||
'minimumFractionDigits,' + | ||
'maximumFractionDigits,' + | ||
'useGrouping,' + | ||
'notation,' + | ||
'signDisplay,' + | ||
'roundingIncrement,' + | ||
'roundingMode,' + | ||
'roundingPriority,' + | ||
'trailingZeroDisplay', | ||
Object.keys((new Intl.NumberFormat()).resolvedOptions()).toString()); |
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,32 @@ | ||
/// Copyright 2023 the V8 project authors. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
esid: sec-initializepluralrules | ||
description: Checks the order of option read. | ||
features: [Intl.NumberFormat-v3] | ||
---*/ | ||
|
||
let optionKeys = Object.keys((new Intl.PluralRules()).resolvedOptions()); | ||
let opt = {}; | ||
let readKeys = new Array(); | ||
// For each item returned by resolvedOptions of default, add a getter | ||
// to track the reading order. | ||
optionKeys.forEach((property) => | ||
Object.defineProperty(opt, property, { | ||
get() { | ||
readKeys[readKeys.length] = property; | ||
return undefined; | ||
}, | ||
})); | ||
let p = new Intl.PluralRules(undefined, opt); | ||
assert.sameValue( | ||
'type,' + | ||
'minimumIntegerDigits,' + | ||
'minimumFractionDigits,' + | ||
'maximumFractionDigits,' + | ||
'roundingIncrement,' + | ||
'roundingMode,' + | ||
'roundingPriority,' + | ||
'trailingZeroDisplay', | ||
readKeys.toString()); |
20 changes: 20 additions & 0 deletions
20
test/intl402/PluralRules/prototype/resolvedOptions/return-keys-order-default.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,20 @@ | ||
// Copyright 2023 the V8 project authors. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-intl.pluralrules.prototype.resolvedoptions | ||
description: order of property keys for the object returned by resolvedOptions() | ||
features: [Intl.NumberFormat-v3] | ||
---*/ | ||
|
||
assert.sameValue( | ||
'locale,' + | ||
'type,' + | ||
'minimumIntegerDigits,' + | ||
'minimumFractionDigits,' + | ||
'maximumFractionDigits,' + | ||
'pluralCategories,' + | ||
'roundingIncrement,' + | ||
'roundingMode,' + | ||
'roundingPriority,' + | ||
'trailingZeroDisplay', | ||
Object.keys((new Intl.PluralRules()).resolvedOptions()).toString()); |