mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 13:05:31 +00:00
This also updates the spec tests from the current version of the MFWG
repository and removes some duplicate tests.
Spec tests now reflect the message-format-wg repo as of
5612f3b050
It also updates both the ICU4C and ICU4J parsers to follow the
current test schema in the conformance repository.
This includes adding code to both parsers to allow `src` to be
either a single string or an array of strings (per
https://github.com/unicode-org/conformance/pull/255 ),
and eliminating `srcs` in tests.
It also includes other changes to make updated spec tests pass:
ICU4C: Allow trailing whitespace for complex messages, due to spec change
ICU4C: Parse number literals correctly in Number::format
ICU4J: Allow trailing whitespace after complex body, per spec change
ICU4C: Fix bug that was assuming an .input variable can't have a reserved annotation
ICU4C: Fix bug where unsupported '.i' was parsed as an '.input'
ICU4C/ICU4J: Handle markup with space after the initial left curly brace
ICU4C: Check for duplicate variant errors
ICU4C/ICU4J: Handle leading whitespace in complex messages
ICU4J: Treat whitespace after .input keyword as optional
ICU4J: Don't format unannotated number literals as numbers
50 lines
1.5 KiB
JSON
50 lines
1.5 KiB
JSON
{
|
|
"scenario": "Syntax errors with character and line offsets",
|
|
"description": "Syntax errors; for ICU4C, the character and line offsets in the parse error are checked",
|
|
"defaultTestProperties": {
|
|
"locale": "en-US",
|
|
"expErrors": [
|
|
{
|
|
"type": "syntax-error"
|
|
}
|
|
]
|
|
},
|
|
"tests": [
|
|
{
|
|
"src": "{{hello wo\nrld",
|
|
"char": 3,
|
|
"line": 1,
|
|
"comment": "Check that the missing closing '}' is reported on the correct line"
|
|
},
|
|
{
|
|
"src": "{{hello wo\nr\nl\ndddd",
|
|
"char": 4,
|
|
"line": 3,
|
|
"comment": "Check that the missing closing '}' is reported on the correct line"
|
|
},
|
|
{
|
|
"src": "{{hello wo\nr\nl\n",
|
|
"char": 0,
|
|
"line": 3,
|
|
"comment": "Offset for end-of-input should be 0 here because the line begins after the '\n', but there is no character after the '\n'"
|
|
},
|
|
{
|
|
"src": "hello {|wo\nrld",
|
|
"char": 3,
|
|
"line": 1,
|
|
"comment": "Quoted literals may include newlines; check that the missing closing '|' is reported on the correct line"
|
|
},
|
|
{
|
|
"src": "hello {|wo\nr\nl\ndddd",
|
|
"char": 4,
|
|
"line": 3,
|
|
"comment": "Quoted literals may include newlines; check that the missing closing '|' is reported on the correct line"
|
|
},
|
|
{
|
|
"src": "hello {|wo\nr\nl\n",
|
|
"char": 0,
|
|
"line": 3,
|
|
"comment": "Offset for end-of-input should be 0 here because the line begins after the '\n', but there is no character after the '\n'"
|
|
}
|
|
]
|
|
}
|