label-elements 007 (AB)
Testing p:label-elements.
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" version="3.0">
<p:output port="result"/>
<p:input port="source">
<doc>
<element/>
</doc>
</p:input>
<p:label-elements xmlns:baz="http://baz.com"
match="element" attribute="baz:foo"/>
</p:declare-step>
Result
<doc xmlns:t="http://xproc.org/ns/testsuite/3.0">
<element xmlns:baz="http://baz.com" baz:foo="_1"/>
</doc>
Schematron checks
<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron"
xmlns:t="http://xproc.org/ns/testsuite/3.0" queryBinding="xslt2">
<s:ns uri="http://baz.com" prefix="baz"/>
<s:pattern>
<s:rule context="/">
<s:assert test="doc/element/@baz:foo='_1'">Child 'element' of 'doc' does not have @baz:foo with '_1'.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 10 Jun 2021, Achim Berndzen
- Added attribute 'queryBinding' to schematron's schema.
- 04 May 2019, Achim Berndzen
- Ported test from 1.0 test suite