p:text-sort-016 (AB)

Tests p:text-sort: More complicated sort.

Test ab-text-sort-016.xml is expected to pass.

The pipeline


<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0">
   <p:output port="result"/>
   <p:text-sort>
      <p:with-input>
         <p:inline content-type="text/plain">This
There was
That should be
That
There
There is
That should</p:inline>
      </p:with-input>
   </p:text-sort>
   <p:wrap-sequence wrapper="wrapper"/>
</p:declare-step>
MorganaXProc passing XML Calabash passing

Schematron validation


<s:schema xmlns="http://www.w3.org/1999/xhtml" xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
   <s:pattern>
      <s:rule context="/">
         <s:assert test="wrapper">The root element is not wrapper.</s:assert>
         <s:assert test="wrapper/text()='That&#xA;That should&#xA;That should be&#xA;There&#xA;There is&#xA;There was&#xA;This&#xA;'">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.

01 Sep 2019, Achim Berndzen

Some tests for p:text-sort