with-input-004

Tests p:with-input with select.

Test ab-with-input-004.xml is expected to pass.

The pipeline


<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0">
   <p:output port="result"/>
   <p:identity>
      <p:with-input select="root/doc">
         <p:inline>
            <root>
               <doc/>
            </root>
         </p:inline>
      </p:with-input>
   </p:identity>
</p:declare-step>
MorganaXProc passing XML Calabash passing

Schematron validation


<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" 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

29 Dec 2017 19:20, Achim Berndzen

Creating new tests, extending rng and corrected xproc's test