mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 13:05:31 +00:00
Updating the spec tests requires two implementation changes: * Match on variables rather than expressions -- see https://github.com/unicode-org/message-format-wg/pull/877 * Require attribute values to be literals (if present) -- see https://github.com/unicode-org/message-format-wg/pull/894 This updates the spec tests to commit 6c3704f41a9c24427126429fb43992b03609dfc8 in https://github.com/unicode-org/message-format-wg/ . Any changes following that commit will be addressed in a future PR.
177 lines
3.5 KiB
JSON
177 lines
3.5 KiB
JSON
{
|
|
"scenario": "Additional data model errors",
|
|
"defaultTestProperties": {
|
|
"locale": "en-US"
|
|
},
|
|
"tests": [
|
|
{
|
|
"src": ".input {$foo :number} .input {$bar :number} .match $foo $bar one{{one}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "variant-key-mismatch"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": ".input {$foo :number} .input {$bar :number} .match $foo $bar one {{one}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "variant-key-mismatch"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": ".input {$foo :number} .input {$bar :number} .match $foo $bar one {{one}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "variant-key-mismatch"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": ".input {$foo :number} .match $foo * * {{foo}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "variant-key-mismatch"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": ".input {$one :number} .match $one\n 1 2 {{Too many}}\n * {{Otherwise}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "variant-key-mismatch"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": ".input {$one :number} .input {$two :number} .match $one $two \n 1 2 {{Two keys}}\n * {{Missing a key}}\n * * {{Otherwise}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "variant-key-mismatch"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": ".input {$foo :x} .input {$bar :X} .match $foo $bar * {{foo}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "variant-key-mismatch"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": ".input {$one :number} .match $one\n 1 {{Value is one}}\n 2 {{Value is two}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "missing-fallback-variant"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": ".input {$one :number} .input {$two :number} .match $one $two\n 1 * {{First is one}}\n * 1 {{Second is one}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "missing-fallback-variant"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": ".match $one\n 1 {{Value is one}}\n * {{Value is not one}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "missing-selector-annotation"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": ".local $one = {|The one|}\n .match $one\n 1 {{Value is one}}\n * {{Value is not one}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "missing-selector-annotation"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"src": ".input {$foo} .match $foo one {{one}} * {{other}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "missing-selector-annotation"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": ".local $foo = {$bar} .match $foo one {{one}} * {{other}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "missing-selector-annotation"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": ".local $x = {|1|} .input {$x :number} {{{$x}}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "duplicate-declaration"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": ".input {$x :number} .input {$x :string} {{{$x}}}",
|
|
"expErrors": [
|
|
{
|
|
"type": "duplicate-declaration"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": "{:foo a=1 b=2 a=1}",
|
|
"expErrors": [
|
|
{
|
|
"type": "duplicate-option-name"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": "{:foo a=1 a=1}",
|
|
"expErrors": [
|
|
{
|
|
"type": "duplicate-option-name"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": "{:foo a=1 a=2}",
|
|
"expErrors": [
|
|
{
|
|
"type": "duplicate-option-name"
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
"src": "{|x| :foo a=1 a=2}",
|
|
"expErrors": [
|
|
{
|
|
"type": "duplicate-option-name"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|