http-request-023 (AB)
Tests p:http-request: post with html payload to a responder.
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:option name="WHOST"
select="'http://localhost:8246'" static="true"/>
<p:output port="result"/>
<p:http-request href="{$WHOST}/service/echo"
method="post">
<p:with-input>
<p:inline content-type="text/html">
<p>HTML fragment.</p>
</p:inline>
</p:with-input>
</p:http-request>
</p:declare-step>
Result
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:t="http://xproc.org/ns/testsuite/3.0">
<head/>
<body>
<p>HTML fragment.</p>
</body>
</html>
Schematron checks
<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron"
xmlns:t="http://xproc.org/ns/testsuite/3.0" queryBinding="xslt2">
<s:ns prefix="h" uri="http://www.w3.org/1999/xhtml"/>
<s:pattern>
<s:rule context="/">
<s:assert test="h:html">The root element is not 'html'.</s:assert>
<s:assert test="h:html/h:body">There is no body element.</s:assert>
<s:assert test="h:html/h:body/h:p/text()='HTML fragment.'">There is no para with 'HTML fragment'.</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.
- 12 Jan 2020, Achim Berndzen
- Added new tests for p:http-request (Ported from 1.0).