p:rename-001 (AB)

Tests p:rename

Test ab-rename-001.xml is expected to pass.

The pipeline


<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0">
   <p:input port="source"/>
   <p:output port="result"/>
   <p:rename match="p:rename" new-name="p:changed-name"/>
</p:declare-step>
MorganaXProc passing XML Calabash failing

Inputs

port = source


<p:pipeline xmlns:p="http://www.w3.org/ns/xproc" name="pipeline">
   <p:rename>
      <p:option name="match" value="p:rename"/>
      <p:option name="new-name" value="p:changed-rename"/>
   </p:rename>
</p:pipeline>

Schematron validation


<s:schema xmlns="http://www.w3.org/1999/xhtml" xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
   <s:ns uri="http://www.w3.org/ns/xproc" prefix="p"/>
   <s:pattern>
      <s:rule context="/">
         <s:assert test="p:pipeline">The root element is not 'Q{http://www.w3.org/ns/xproc}pipeline'.</s:assert>
         <s:assert test="p:pipeline/p:changed-name">The root element does not have a child 'Q{http://www.w3.org/ns/xproc}changed-name'.</s:assert>
         <s:assert test="count(p:pipeline/p:changed-name/p:option)=2">Element 'p:changed-name' does not have two 'p:option' children.</s:assert>
      </s:rule>
   </s:pattern>
</s:schema>

Revision history

10 Jun 2021, Achim Berndzen

Added attribute 'queryBinding' to schematron's schema.

18 May 2019, Achim Berndzen

Ported tests for p:rename