JSON merge 017(AB)
Tests that entries is correctly ordered.
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:json-merge key="concat('label-',$p:index)">
<p:with-input expand-text="false">
<p:inline content-type="application/json">"one"</p:inline>
<p:inline content-type="application/json">{"key1" : "value1"}</p:inline>
<p:inline content-type="application/json">"two"</p:inline>
<p:inline content-type="application/json">{"key2" : "value2"}</p:inline>
<p:inline content-type="application/json">"three"</p:inline>
</p:with-input>
</p:json-merge>
<p:cast-content-type content-type="application/xml"/>
</p:declare-step>
Result
<map xmlns="http://www.w3.org/2005/xpath-functions"
xmlns:t="http://xproc.org/ns/testsuite/3.0">
<string key="key1">value1</string>
<string key="key2">value2</string>
<string key="label-1">one</string>
<string key="label-3">two</string>
<string key="label-5">three</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="map"
uri="http://www.w3.org/2005/xpath-functions"/>
<s:pattern>
<s:rule context="/">
<s:assert test="map:map">The document node is not 'map:map'.</s:assert>
<s:assert test="count(map:map/*)=5">Element 'map:map' does not have five children.</s:assert>
<s:assert test="count(map:map/map:string)=5">Element 'map:map' does not have five children 'map:string'.</s:assert>
<s:assert test="map:map/map:string[@key='label-1']='one'">The ‘one’ entry does not have @key 'label-1'.</s:assert>
<s:assert test="map:map/map:string[@key='key1']='value1'">The ‘value1’ entry does not have @key 'key1'.</s:assert>
<s:assert test="map:map/map:string[@key='label-3']='two'">The ‘two’ entry does not have @key 'label-3'.</s:assert>
<s:assert test="map:map/map:string[@key='key2']='value2'">The ‘value2’ entry does not have @key 'key2'.</s:assert>
<s:assert test="map:map/map:string[@key='label-5']='three'">The ‘three’ entry does not have @key 'label-5'.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 10 Jun 2021, Achim Berndzen
- Added attribute 'queryBinding' to schematron's schema.
- 13 Oct 2019, Achim Berndzen
- Added tests for p:json-merge