UNPKG

cldr

Version:

Library for extracting data from CLDR (the Unicode Common Locale Data Repository)

76 lines (75 loc) 2.34 kB
{ "$schema": "https://raw.githubusercontent.com/unicode-org/message-format-wg/main/test/schemas/v0/tests.schema.json", "scenario": "String function", "description": "The built-in formatter for strings.", "defaultTestProperties": { "bidiIsolation": "none", "locale": "en-US" }, "tests": [ { "src": ".input {$foo :string} .match $foo |1| {{one}} * {{other}}", "params": [ { "name": "foo", "value": "1" } ], "exp": "one" }, { "src": ".input {$foo :string} .match $foo 1 {{one}} * {{other}}", "params": [ { "name": "foo", "value": 1 } ], "exp": "one" }, { "src": ".input {$foo :string} .match $foo 1 {{one}} * {{other}}", "params": [ { "name": "foo", "value": null } ], "exp": "other" }, { "src": ".input {$foo :string} .match $foo 1 {{one}} * {{other}}", "exp": "other", "expErrors": [ { "type": "unresolved-variable" } ] }, { "description": "NFC: keys are normalized (unquoted)", "src": ".local $x = {\u1E0A\u0323 :string} .match $x \u1E0A\u0323 {{Not normalized}} \u1E0C\u0307 {{Normalized}} * {{Wrong}}", "expErrors": [{"type": "duplicate-variant"}] }, { "description": "NFC: keys are normalized (quoted)", "src": ".local $x = {\u1E0A\u0323 :string} .match $x |\u1E0A\u0323| {{Not normalized}} |\u1E0C\u0307| {{Normalized}} * {{Wrong}}", "expErrors": [{"type": "duplicate-variant"}] }, { "description": "NFC: keys are normalized (mixed)", "src": ".local $x = {\u1E0A\u0323 :string} .match $x \u1E0A\u0323 {{Not normalized}} |\u1E0C\u0307| {{Normalized}} * {{Wrong}}", "expErrors": [{"type": "duplicate-variant"}] }, { "description": "NFC: :string normalizes the comparison value (un-normalized selector, normalized key)", "src": ".local $x = {\u1E0A\u0323 :string} .match $x \u1E0C\u0307 {{Right}} * {{Wrong}}", "exp": "Right" }, { "description": "NFC: keys are normalized (normalized selector, un-normalized key)", "src": ".local $x = {\u1E0C\u0307 :string} .match $x \u1E0A\u0323 {{Right}} * {{Wrong}}", "exp": "Right" } ] }