Checks sending form data (Ported http-request #011)
Test ab-http-request-090.xml is expected to pass.
It requires the following features: p:http-request.
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0">
<p:output port="result"/>
<p:http-request method="post" href="http://localhost:8246/service/echoparams">
<p:with-input>
<p:inline content-type="application/x-www-form-urlencoded">name=W3C&spec=XProc</p:inline>
</p:with-input>
</p:http-request>
</p:declare-step>
<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron" 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>
Added attribute 'queryBinding' to schematron's schema.
Added new tests for p:http-request.