p:text-sort-027 (AB)
Tests p:text-sort
Test is expected to pass.
The pipeline
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc"
xmlns:t="http://xproc.org/ns/testsuite/3.0" version="3.0">
<p:output port="result"/>
<p:text-sort lang="de" case-order="lower-first">
<p:with-input>
<p:inline content-type="text/plain">bX
aX
äX
BX
AX
ÄX</p:inline>
</p:with-input>
</p:text-sort>
<p:wrap-sequence wrapper="wrapper"/>
</p:declare-step>
Result
<wrapper xmlns:t="http://xproc.org/ns/testsuite/3.0">aX
AX
äX
ÄX
bX
BX
</wrapper>
Schematron checks
<s:schema xmlns="http://www.w3.org/1999/xhtml"
xmlns:s="http://purl.oclc.org/dsdl/schematron" xmlns:t="http://xproc.org/ns/testsuite/3.0"
queryBinding="xslt2">
<s:pattern>
<s:rule context="/">
<s:assert test="wrapper">The root element is not wrapper.</s:assert>
<s:assert test="wrapper/text()='aX
AX
äX
ÄX
bX
BX
'">Text is not sorted correctly.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 03 Sep 2022, Achim Berndzen
- Initial commit