with-input-041
Tests p:with-input: Combinations of p:pipeinfo and implicit inline are allowed.
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" version="3.0">
<p:output port="result"/>
<p:identity>
<p:with-input>
<p:pipeinfo>Some documentation.</p:pipeinfo>
<doc/>
</p:with-input>
</p:identity>
</p:declare-step>
Result
<doc xmlns:t="http://xproc.org/ns/testsuite/3.0"/>
Schematron checks
<s:schema xmlns:p="http://www.w3.org/ns/xproc"
xmlns:rng="http://relaxng.org/ns/structure/1.0"
xmlns:s="http://purl.oclc.org/dsdl/schematron" xmlns:t="http://xproc.org/ns/testsuite/3.0"
queryBinding="xslt2">
<s:ns prefix="p" uri="http://www.w3.org/ns/xproc"/>
<s:pattern>
<s:rule context="/*">
<s:assert test="self::doc">The document root is not doc.</s:assert>
<s:assert test="count(/doc/*) = 0">doc is not an empty element.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 09 Jul 2018, Achim Berndzen
- Corrected tests and adapt to changes in the spec
- 02 Jun 2018, Norman Walsh
- Fix namespace declarations
- 29 Dec 2017, Achim Berndzen
- Creating new tests, extending rng and corrected xproc's test