with-input-015
Tests p:with-input with @pipe (just port)
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 name="one">
<p:with-input>
<doc/>
</p:with-input>
</p:identity>
<p:identity>
<p:with-input pipe="result"/>
</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 pipeline root is not doc.</s:assert>
<s:assert test="count(self::doc//*) = 0">No children of doc expected.</s:assert>
<s:assert test="count(self::doc//@*) = 0">No attributes of doc expected.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 18 Feb 2018, Achim Berndzen
- Reversed @pipe-substructure. (->Prague 2018)
- 29 Dec 2017, Achim Berndzen
- Creating new tests, extending rng and corrected xproc's test