http-request-090 (AB)

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.

The pipeline


<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&amp;spec=XProc</p:inline>
      </p:with-input>
   </p:http-request>
</p:declare-step>
MorganaXProc passing XML Calabash passing

Schematron validation


<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>

Revision history

10 Jun 2021, Achim Berndzen

Added attribute 'queryBinding' to schematron's schema.

15 Jan 2020, Achim Berndzen

Added new tests for p:http-request.