<?xml version="1.0" encoding="utf-8"?>
<t:test xmlns:t="http://xproc.org/ns/testsuite/3.0"
        xml:base="/ab-http-request-104.xml"
        name="ab-http-request-104.xml"
        features="p:http-request"
        expected="pass">
   <t:info>
      <t:title>http-request-104 (AB)</t:title>
      <t:revision-history>
         <t:revision>
            <t:date>2025-05-23</t:date>
            <t:author>
               <t:name>Norm Tovey-Walsh</t:name>
            </t:author>
            <t:description xmlns="http://www.w3.org/1999/xhtml">
               <p>Added static options for web server host and port.</p>
            </t:description>
         </t:revision>
         <t:revision>
            <t:date>2021-06-10</t:date>
            <t:author>
               <t:name>Achim Berndzen</t:name>
            </t:author>
            <t:description xmlns="http://www.w3.org/1999/xhtml">
               <p>Added attribute 'queryBinding' to schematron's schema.</p>
            </t:description>
         </t:revision>
         <t:revision>
            <t:date>2020-01-18</t:date>
            <t:author>
               <t:name>Achim Berndzen</t:name>
            </t:author>
            <t:description xmlns="http://www.w3.org/1999/xhtml">
               <p>Added new tests for p:http-request.</p>
            </t:description>
         </t:revision>
      </t:revision-history>
   </t:info>
   <t:description xmlns="http://www.w3.org/1999/xhtml">
      <p>Tests multipart request: Two xml documents, content-type: multipart/fixed.(checking properties).</p>
   </t:description>
   <t:pipeline>
      <p:declare-step xmlns:p="http://www.w3.org/ns/xproc" 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>
   </t:pipeline>
   <t:schematron>
      <s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron" 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>
   </t:schematron>
   <t:result name="ab-http-request-104.xml">
      <properties>
         <prop uri="http://apache2/service/echo" content-type="application/xml"/>
         <prop uri="http://apache2/service/echo" content-type="application/xml"/>
      </properties>
   </t:result>
</t:test>
