p:rename-003 (AB)

Tests p:rename

Test ab-rename-003.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 xmlns:test="http://test.com" xmlns:test2="http://test2.com" match="@test:foo" new-name="test2:foo"/>
</p:declare-step>
MorganaXProc passing XML Calabash failing

Inputs

port = source


<doc xmlns:test="http://test.com" xmlns:test2="http://test2.com" test:foo="value" test2:foo="value2"/>

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://test2.com" prefix="test2"/>
   <s:pattern>
      <s:rule context="/">
         <s:assert test="doc">The root element is not 'doc'.</s:assert>
         <s:assert test="doc/@test2:foo">Root element does not have an attribute Q{http://test2.com}foo.</s:assert>
         <s:assert test="doc/@test2:foo='value'">Attribute's value is not 'value'.</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