p:xinclude 018 (AB)
Tests p:xinclude with fixup-xml-lang.
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" name="pipeline" version="3.0">
<p:output port="result"/>
<p:xinclude fixup-xml-lang="true">
<p:with-input>
<document>
<para>This is an english paragraph.</para>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
href="../documents/ab-xinclude-lang.xml" xpointer="deutsch"/>
</document>
</p:with-input>
</p:xinclude>
</p:declare-step>
Result
<document xmlns:t="http://xproc.org/ns/testsuite/3.0">
<para>This is an english paragraph.</para>
<para xml:id="deutsch" xml:lang="de">Ein deutscher Text.</para>
</document>
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="document">Root element is not 'document'.</s:assert>
<s:assert test="count(document/para)=2">Element 'document' does not have two children 'para'.</s:assert>
<s:assert test="document/para[1]/text()='This is an english paragraph.'">The para[1] element has the wrong text.</s:assert>
<s:assert test="document/para[2]/text()='Ein deutscher Text.'">The para[2] element has the wrong text.</s:assert>
<s:assert test="document/para[2]/@xml:id='deutsch'">The para[2] element does not have @xml:id='deutsch'.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 01 Jun 2022, Achim Berndzen
- Additional tests for p:xinclude.