Tests document-properties-document for a variable set via doc()
Test ab-document-properties-004.xml is expected to pass.
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0">
<p:output port="result"/>
<p:variable name="var" select="doc('../documents/ab-doc.xml')"/>
<p:cast-content-type content-type="application/xml">
<p:with-input select="p:document-properties($var)">
<doc/>
</p:with-input>
</p:cast-content-type>
</p:declare-step>
<s:schema xmlns="http://www.w3.org/1999/xhtml" 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 root is not 'j:map'.</s:assert>
<s:assert test="j:map/j:string[@key='content-type'] = 'application/xml'">Content-type is not application/xml.</s:assert>
<s:assert test="ends-with(j:map/j:string[@key='base-uri'], '/documents/ab-doc.xml')">Base-uri is not correct.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Fixed test as consequence of pr#1042.
Added attribute 'queryBinding' to schematron's schema.
Changed test from p:document-properties-document() to p:document-properties().
Fixed result document
(
c:document-properties
, not
p:document-properties
)
More tests.