Test p-inline-001.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" sequence="true"/>
<p:identity name="inline">
<p:with-input port="source">
<p:inline>
<t:hello-world/>
</p:inline>
</p:with-input>
</p:identity>
<p:cast-content-type content-type="application/xml" name="properties">
<p:with-input port="source" select="p:document-properties(.)"/>
</p:cast-content-type>
<p:wrap-sequence wrapper="c:result">
<p:with-input port="source" pipe="@properties @inline"/>
</p:wrap-sequence>
</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:ns prefix="c" uri="http://www.w3.org/ns/xproc-step"/>
<s:pattern>
<s:rule context="/">
<s:assert test="c:result">The pipeline root is not c:result</s:assert>
<s:assert test="c:result/j:map">The result does not include a j:map element.</s:assert>
<s:assert test="c:result/*:hello-world">The result does not include hello-world</s:assert>
<s:assert test="c:result/j:map/j:string[@key='content-type']/text() = 'application/xml'">
The content type of the result is not application/xml
</s:assert>
</s:rule>
</s:pattern>
</s:schema>
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
)
Fixing broken test (namespace removed)
Reversed @pipe-substructure. (->Prague 2018)
New tests for p:inline