Library import 035 (AB)
Tests that a private step in a library and a same named steps are kept separate.
Test is expected to pass.
The pipeline
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc"
xmlns:t="http://xproc.org/ns/testsuite/3.0" xmlns:x="http://test" version="3.0">
<p:import href="../pipelines/ab-library-009.xpl"/>
<p:output port="result"/>
<p:declare-step type="x:step1">
<p:output port="source"/>
<p:identity>
<p:with-input>
<doc2/>
</p:with-input>
</p:identity>
</p:declare-step>
<x:step name="imported"/>
<x:step1 name="local"/>
<p:wrap-sequence wrapper="result">
<p:with-input pipe="@imported @local"/>
</p:wrap-sequence>
</p:declare-step>
Result
<result xmlns:t="http://xproc.org/ns/testsuite/3.0">
<doc xmlns:x="http://test"/>
<doc2 xmlns:x="http://test"/>
</result>
Schematron checks
<s:schema 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="result">The document root is not doc.</s:assert>
<s:assert test="result/*[1]/name()='doc'">First child is not named 'doc'.</s:assert>
<s:assert test="result/*[2]/name()='doc2'">Second child is not named 'doc2'.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 10 Jun 2021, Achim Berndzen
- Added attribute 'queryBinding' to schematron's schema.
- 07 Mar 2019, Achim Berndzen
- Added new tests for p:declare-step and p:import.