http-request-091 (AB)
Checks query param in URI.
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 method="get"
href="{$WHOST}/service/echoparams?name=W3C&spec=XProc">
<p:with-input>
<p:empty/>
</p:with-input>
</p:http-request>
</p:declare-step>
Result
<params xmlns:t="http://xproc.org/ns/testsuite/3.0">
<param name="name">W3C</param>
<param name="spec">XProc</param>
</params>
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="params">The root element is not 'params'.</s:assert>
<s:assert test="params/param[@name='name']/text()='W3C'">There is no element with @name='name' and text()='W3C'.</s:assert>
<s:assert test="params/param[@name='spec']/text()='XProc'">There is no element with @name='spec' and text()='XProc'.</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.
- 15 Jan 2020, Achim Berndzen
- Added new tests for p:http-request.