p:archive 006 (AB)
Tests p:archive: Adding entries to a newly created archive. No source, but just 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:empty/>
</p:with-input>
<p:with-input port="manifest">
<c:archive>
<c:entry name="one.xml"
href="../documents/ab-doc.xml"/>
<c:entry name="two.xml"
href="../documents/ab-doc2.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="result"/>
</p:declare-step>
Result
<result xmlns:t="http://xproc.org/ns/testsuite/3.0">
<doc/>
<doc att="1"/>
</result>
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="result">Root element is not result.</s:assert>
<s:assert test="count(result/doc)=2">Root element does not have two child 'doc'.</s:assert>
<s:assert test="count(result/doc/@att)=1">There is no doc with @att.</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