p:namespace-rename-016 (AB)

Test to make sure that a deleted namespace is handled correctly in a nested structure.

Test is expected to pass.

Input: source

<doc xmlns="http://www.example.com/"
     xmlns:ns="http://www.example.com/ns" xmlns:t="http://xproc.org/ns/testsuite/3.0">
   <parent>
      <ns:child/>
   </parent>
</doc>

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:filter xmlns:n="http://www.example.com/"
             select="//n:parent"/>
   <p:namespace-rename from="http://www.example.com/ns"/>
</p:declare-step>

Result

<parent xmlns:t="http://xproc.org/ns/testsuite/3.0">
   <child/>
</parent>

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:pattern>
      <s:rule context="/">
         <s:assert test="*/local-name()='parent'">Root element is not 'parent'.</s:assert>
         <s:assert test="*/namespace-uri()='http://www.example.com/'">Root element's namespace is not 'http://www.example.com/'.</s:assert>
         <s:assert test="*/*/local-name()='child'">Name of root's child is not 'child'.</s:assert>
         <s:assert test="*/*/namespace-uri()=''">Element 'child' is not in no-namespace.</s:assert>
      </s:rule>
   </s:pattern>
</s:schema>

Revision history

10 Jun 2021, Achim Berndzen
Added attribute 'queryBinding' to schematron's schema.
17 May 2019, Achim Berndzen
Ported tests for p:namespace-rename