iXML Community Group Test Suite
23 Oct 2023 (22 Nov 2023)
Top-level catalog for tests in the iXML Community Group Test Suite.
Tests have been contributed from several sources, but the core of the test collection are the tests contributed by Steven Pemberton in December 2021.
Tests producing parse trees
22 Nov 2022
Tests provided by Steven Pemberton in December 2021, with corrections of 21 December. Reorganized by Norm Tovey-Walsh, February 2022.
ranges1
Created 05 Feb 2022 by ndw
Invisible XML Grammar
chars: punctuation, nonpunct?; upper, nonupper?; lower, nonlower?; digit, nondigit?.
-nonpunct: upper, nonupper?; lower, nonlower?; digit, nondigit?.
-nonupper: punctuation, nonpunct?; lower, nonlower?; digit, nondigit?.
-nonlower: punctuation, nonpunct?; upper, nonupper?; digit, nondigit?.
-nondigit: punctuation, nonpunct?; upper, nonupper?; lower, nonlower?.
upper: [#41-#5A]+.
lower: [#61-#7A]+.
digit: [#30-#39]+.
punctuation: ~[#a; #d; #30-#39; #41-#5A; #61-#7A]+.
{-lf: -#a.}
{
0123456789abcdef
!"#$%&'()*+,-./
0123456789:;<=>?
@ABCDEFGHIJKLMNO
PQRSTUVWXYZ[\]^_
`abcdefghijklmno
pqrstuvwxyz{|}~
}
Test case: ranges1
Repository URI: …/tests/correct/test-catalog.xml
Created 05 Feb 2022 by ndw
Updated 05 Feb 2022 by ndw
Converted it into the catalog format
Input string (94 characters)
!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~
Expected result
<chars>
<punctuation>!"#$%&'()*+,-./</punctuation>
<digit>0123456789</digit>
<punctuation>:;<=>?@</punctuation>
<upper>ABCDEFGHIJKLMNOPQRSTUVWXYZ</upper>
<punctuation>[\]^_`</punctuation>
<lower>abcdefghijklmnopqrstuvwxyz</lower>
<punctuation>{|}~</punctuation>
</chars>