Features: archive-order

p:archive 045 (AB)

Tests p:archive: Tests entries are ordered as in manifest.

Test is expected to pass.

The pipeline

<p:declare-step xmlns:c="http://www.w3.org/ns/xproc-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:archive>
      <p:with-input port="source">
         <p:inline document-properties="map{'base-uri' : 'http://test/one.xml'}">
            <doc-a/>
         </p:inline>
         <p:inline document-properties="map{'base-uri' : 'http://test/three.xml'}">
            <doc-c/>
         </p:inline>
         <p:inline document-properties="map{'base-uri' : 'http://test/two.xml'}">
            <doc-b/>
         </p:inline>
      </p:with-input>
      <p:with-input port="manifest">
         <c:archive>
            <c:entry name="one.xml"
                     href="http://test/one.xml"/>
            <c:entry name="two.xml"
                     href="http://test/two.xml"/>
            <c:entry name="three.xml"
                     href="http://test/three.xml"/>
         </c:archive>
      </p:with-input>
      <p:with-input port="archive">
         <p:empty/>
      </p:with-input>
   </p:archive>
   <p:unarchive relative-to="folder"/>
   <p:wrap-sequence wrapper="wrapper"/>
</p:declare-step>

Result

<wrapper xmlns:t="http://xproc.org/ns/testsuite/3.0">
   <doc-a xmlns:c="http://www.w3.org/ns/xproc-step"/>
   <doc-b xmlns:c="http://www.w3.org/ns/xproc-step"/>
   <doc-c xmlns:c="http://www.w3.org/ns/xproc-step"/>
</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">Root element is not wrapper.</s:assert>
         <s:assert test="wrapper/*[1]/name()='doc-a'">First element is not 'doc-a'.</s:assert>
         <s:assert test="wrapper/*[2]/name()='doc-b'">Second element is not 'doc-b'.</s:assert>
         <s:assert test="wrapper/*[3]/name()='doc-c'">Third element is not 'doc-c'.</s:assert>
      </s:rule>
   </s:pattern>
</s:schema>

Revision history

10 Jun 2021, Achim Berndzen
Added attribute 'queryBinding' to schematron's schema.
22 Nov 2019, Achim Berndzen
Added relative-to option to p:unarchive, because archive does not have a valid base uri.
01 Sep 2019, Achim Berndzen
Tests for p:archive