p:unarchive 013 (AB)
Tests p:unarchive: Check content of unarchived document.
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" name="pipeline" version="3.0">
<p:output port="result"/>
<p:unarchive include-filter="folder/html\.html">
<p:with-input href="../documents/archive.zip"/>
</p:unarchive>
</p:declare-step>
Result
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:t="http://xproc.org/ns/testsuite/3.0">
<head>
<title>This is a html page</title>
</head>
<body>
<p>This is a html page.</p>
</body>
</html>
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:ns prefix="html"
uri="http://www.w3.org/1999/xhtml"/>
<s:pattern>
<s:rule context="/">
<s:assert test="html:html">Root element is not 'html:html'.</s:assert>
<s:assert test="html:html/html:head/html:title/text()='This is a html page'">HTML title is not 'This is a html page'.</s:assert>
<s:assert test="html:html/html:body/html:p/text()='This is a html page.'">HTML document does not have an element 'p' with 'This is a html page.'.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 10 Jun 2021, Achim Berndzen
- Added attribute 'queryBinding' to schematron's schema.
- 25 Aug 2019, Achim Berndzen
- Initial tests for p:unarchive