p:text-sort-007 (AB)

Tests p:text-sort: Tests numeric sort, descending.

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"
                xmlns:xs="http://www.w3.org/2001/XMLSchema" version="3.0">
   <p:output port="result"/>
   <p:text-sort sort-key="xs:int(tokenize(., '\s')[1])"
                order="descending">
      <p:with-input>
         <p:inline content-type="text/plain">90 C
9 A
1 D
10 B</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">90 C
10 B
9 A
1 D
</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()='90 C
10 B
9 A
1 D
'">Text is not sorted correctly.</s:assert>
      </s:rule>
   </s:pattern>
</s:schema>

Revision history

10 Jun 2021, Achim Berndzen
Added attribute 'queryBinding' to schematron's schema.
21 Dec 2019, Norman Walsh
Correct end-of-line handling.
14 Dec 2019, Achim Berndzen
Added declaration for prefix "xs".
01 Sep 2019, Achim Berndzen
Some tests for p:text-sort