Contenttypes 003
Tests default value for missing @content-types on p:inline is "*/*".
Test is expected to pass.
The pipeline
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc"
xmlns:t="http://xproc.org/ns/testsuite/3.0" version="3.0">
<p:input port="source">
<p:inline content-type="text/plain">Some text</p:inline>
</p:input>
<p:output port="result"/>
<p:wrap-sequence wrapper="result"/>
</p:declare-step>
Result
<result xmlns:t="http://xproc.org/ns/testsuite/3.0">Some text</result>
Schematron checks
<s:schema xmlns="http://www.w3.org/1999/xhtml"
xmlns:s="http://purl.oclc.org/dsdl/schematron" xmlns:t="http://xproc.org/ns/testsuite/3.0"
queryBinding="xslt2">
<s:ns uri="http://www.w3.org/ns/xproc" prefix="p"/>
<s:ns uri="http://www.w3.org/ns/xproc-step"
prefix="c"/>
<s:pattern>
<s:rule context="/">
<s:assert test="result">Root element is not result.</s:assert>
<s:assert test="/result/text()='Some text'">The root element does not have the right text child.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 10 Jun 2021, Achim Berndzen
- Added attribute 'queryBinding' to schematron's schema.
- 03 Oct 2018, Achim Berndzen
- Corrected default of @content-types to be *.*
- 13 Jul 2018, Achim Berndzen
- Added test to make sure p:pipe is no child of p:input. Making content-type statically in the last remaining tests.
- 02 Jun 2018, Norman Walsh
- Fix namespace declarations
- 02 May 2018, Achim Berndzen
- Change test with document-properties to map{xs:QName, item()}
- 25 Apr 2018, Achim Berndzen
- More tests.