Tests nodes are correctly returned in arrays/maps. (Thanks to Martin for the test's blueprint).
Test ab-xslt-120.xml is expected to pass.
It requires the following features: xslt-3.
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="3.0">
<p:output port="result"/>
<p:xslt version="3.0" template-name="start" name="xslt">
<p:with-input port="source">
<p:empty/>
</p:with-input>
<p:with-input port="stylesheet" expand-text="false">
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="3.0">
<xsl:output build-tree="no"/>
<xsl:template name="start" as="map(xs:string, processing-instruction())">
<xsl:variable name="document">
<doc>
<one>
<xsl:processing-instruction name="pi" select="'target'"/>
</one>
<two>
<xsl:processing-instruction name="pi" select="'target'"/>
</two>
</doc>
</xsl:variable>
<xsl:sequence select="map{'one' : $document/doc/one/processing-instruction(), 'two' : $document/doc/two/processing-instruction() }"/>
</xsl:template>
</xsl:stylesheet>
</p:with-input>
</p:xslt>
<p:identity xmlns:map="http://www.w3.org/2005/xpath-functions/map">
<p:with-input>
<result>
<map-check>{. instance of map(*)}</map-check>
<map-size-check>{map:size(.)}</map-size-check>
<map-of-nodes-check>{. instance of map(xs:string, node())}</map-of-nodes-check>
<map-of-pi-check>{. instance of map(xs:string, processing-instruction())}</map-of-pi-check>
<map-item-is-pi-check>{every $item in .?* satisfies $item instance of processing-instruction()}</map-item-is-pi-check>
</result>
</p:with-input>
</p:identity>
</p:declare-step>
<s:schema xmlns="http://www.w3.org/1999/xhtml" xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
<s:pattern>
<s:rule context="/">
<s:assert test="result">The document root is not 'result'.</s:assert>
<s:assert test="result/map-check/text()='true'">The value of map-check is not "true".</s:assert>
<s:assert test="result/map-size-check/text()='2'">The value of map-size-check is not "2".</s:assert>
<s:assert test="result/map-of-nodes-check/text()='true'">The value of map-of-nodes-check is not "true".</s:assert>
<s:assert test="result/map-of-pi-check/text()='true'">The value of map-of-pi-check is not "true".</s:assert>
<s:assert test="result/map-item-is-pi-check/text()='true'">The value of map-item-is-pi-check is not "true".</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Added attribute 'queryBinding' to schematron's schema.
Added tests to check nodes are correctly returned in arrays/maps.