ab-doc-props-004
Tests document-properties with a static option in map constructor
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:option static="true" name="option" select="1"/>
<p:identity name="id">
<p:with-input port="source">
<p:inline document-properties="map { 'a': $option }">
<doc/>
</p:inline>
</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">application/xml</string>
<number key="a">1</number>
<string key="base-uri">file:/woodpecker/src/codeberg.org/xmlcalabash/xmlcalabash3/tests/3.0-test-suite/test-suite/pipelines/ab-doc-prop-004.xpl</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 test from p:document-properties-document() to p:document-properties()
- 06 Oct 2018, Achim Berndzen
- Ten new tests for document-properties