http-request-104 (AB)
Tests multipart request: Two xml documents, content-type: multipart/fixed.(checking properties).
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:output port="result"/>
<p:option name="WHOST"
select="'http://localhost:8246'" static="true"/>
<p:http-request href="{$WHOST}/service/echo"
method="post"
headers="map{'content-type' : 'multipart/fixed'}">
<p:with-input>
<doc1/>
<doc2/>
</p:with-input>
</p:http-request>
<p:for-each>
<p:identity>
<p:with-input>
<prop uri="{p:document-property(.,'base-uri')}"
content-type="{p:document-property(.,'content-type')}"/>
</p:with-input>
</p:identity>
</p:for-each>
<p:wrap-sequence wrapper="properties"/>
</p:declare-step>
Result
<properties xmlns:t="http://xproc.org/ns/testsuite/3.0">
<prop uri="http://apache2/service/echo"
content-type="application/xml"/>
<prop uri="http://apache2/service/echo"
content-type="application/xml"/>
</properties>
Schematron checks
<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron"
xmlns:t="http://xproc.org/ns/testsuite/3.0" queryBinding="xslt2">
<s:pattern>
<s:rule context="/">
<s:assert test="properties">The document root is not response.</s:assert>
<s:assert test="count(properties/prop[ends-with(@uri, '/service/echo')])=2">The base-uri is not correct.</s:assert>
<s:assert test="count(properties/prop[@content-type='application/xml'])=2">The content-type is not correct.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 23 May 2025, Norm Tovey-Walsh
- Added static options for web server host and port.
- 10 Jun 2021, Achim Berndzen
- Added attribute 'queryBinding' to schematron's schema.
- 18 Jan 2020, Achim Berndzen
- Added new tests for p:http-request.