Tests casting from one xml content type to another.
Test ab-cast-content-type-002.xml is expected to pass.
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" name="pipeline" version="3.0">
<p:output port="result"/>
<p:cast-content-type content-type="text/xml" name="caster">
<p:with-input>
<p:inline document-properties="map{'base-uri' : 'http://xproc-test.org', 'serialization' : map{'indent' : true()}, 'additional' : 'property'}">
<doc/>
</p:inline>
</p:with-input>
</p:cast-content-type>
<p:cast-content-type content-type="application/xml" name="properties">
<p:with-input select="p:document-properties(.)"/>
</p:cast-content-type>
<p:wrap-sequence wrapper="result">
<p:with-input pipe="@caster @properties"/>
</p:wrap-sequence>
</p:declare-step>
<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
<s:ns prefix="fn" uri="http://www.w3.org/2005/xpath-functions"/>
<s:pattern>
<s:rule context="/">
<s:assert test="result">The root element is not result.</s:assert>
<s:assert test="result/doc">Root element does not have child 'doc'.</s:assert>
<s:assert test="result/fn:map">Root element does not have child 'fn:map'.</s:assert>
<s:assert test="result/fn:map/fn:string[@key='base-uri']='http://xproc-test.org'">The base-uri property is not correct.</s:assert>
<s:assert test="result/fn:map/fn:string[@key='content-type']='text/xml'">The content-type property is not correct.</s:assert>
<s:assert test="result/fn:map/fn:string[@key='additional']='property'">The additional property is not correct.</s:assert>
<s:assert test="result/fn:map/fn:map[@key='serialization']">There is no serialization property.</s:assert>
<s:assert test="result/fn:map/fn:map[@key='serialization']/fn:boolean[@key='indent'] = 'true'">The serialization map with key 'indent' is not correct.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Added attribute 'queryBinding' to schematron's schema.
Initial tests for the new iteration of p:cast-content-type