Document properties 003
Test is expected to pass.
The pipeline
<p:declare-step xmlns:c="http://www.w3.org/ns/xproc-step"
xmlns:p="http://www.w3.org/ns/xproc"
xmlns:t="http://xproc.org/ns/testsuite/3.0" name="main" version="3.0">
<p:output port="result"/>
<p:identity name="id">
<p:with-input port="source">
<p:document href="../documents/calabash.png"
document-properties="map { 'a': 1 }"/>
</p:with-input>
</p:identity>
<p:cast-content-type content-type="application/xml">
<p:with-input port="source"
select="p:document-properties(.)"/>
</p:cast-content-type>
</p:declare-step>
Result
<map xmlns="http://www.w3.org/2005/xpath-functions"
xmlns:t="http://xproc.org/ns/testsuite/3.0">
<string key="content-type">image/png</string>
<number key="a">1</number>
<string key="base-uri">file:/woodpecker/src/codeberg.org/xmlcalabash/xmlcalabash3/tests/3.0-test-suite/test-suite/documents/calabash.png</string>
</map>
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 prefix="j"
uri="http://www.w3.org/2005/xpath-functions"/>
<s:pattern>
<s:rule context="/">
<s:assert test="j:map">The pipeline root is not “map”.</s:assert>
<s:assert test="j:map/j:number[@key='a']">Element does not has an attribute 'key' with value 'a'.</s:assert>
<s:assert test="j:map/j:number/text() = '1'">The property value is not 1</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 20 Nov 2019, Achim Berndzen
- Changed from p:document-properties-document() to p:document-properties()
- 24 Sep 2017, Norman Walsh
- Port my test suite; add documentation and schemas