p:rename-001 (AB)

Tests p:rename

Test is expected to pass.

Input: source

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

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:input port="source"/>
   <p:output port="result"/>
   <p:rename match="p:rename" new-name="p:changed-name"/>
</p:declare-step>

Result

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

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