Test doc-prop-004.xml is expected to pass.
<p:declare-step xmlns:c="http://www.w3.org/ns/xproc-step" xmlns:p="http://www.w3.org/ns/xproc" name="main" version="3.0">
<p:output port="result"/>
<p:identity name="id">
<p:with-input port="source">
<p:inline document-properties="map { 'a': 1 }">
<doc/>
</p:inline>
</p:with-input>
</p:identity>
<p:variable name="a" select="."/>
<p:cast-content-type content-type="application/xml">
<p:with-input port="source" select="p:document-properties($a)"/>
</p:cast-content-type>
</p:declare-step>
<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron" 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>
Changed test from p:document-properties-document() to p:document-properties()
Port my test suite; add documentation and schemas