<?xml version="1.0" encoding="utf-8"?>
<t:test xmlns:t="http://xproc.org/ns/testsuite/3.0"
        xml:base="/ab-xslt-041.xml"
        name="ab-xslt-041.xml"
        expected="pass"
        features="xslt-3">
   <t:info>
      <t:title>AB-xslt-041</t:title>
      <t:revision-history>
         <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-07-04</t:date>
            <t:author>
               <t:name>Achim Berndzen</t:name>
            </t:author>
            <t:description xmlns="http://www.w3.org/1999/xhtml">
               <p>Change test so it does not rely on document order of port "secondary".</p>
            </t:description>
         </t:revision>
         <t:revision>
            <t:date>2019-08-04</t:date>
            <t:author>
               <t:name>Achim Berndzen</t:name>
            </t:author>
            <t:description xmlns="http://www.w3.org/1999/xhtml">
               <p>Initial commit</p>
            </t:description>
         </t:revision>
      </t:revision-history>
   </t:info>
   <t:description xmlns="http://www.w3.org/1999/xhtml">
      <p>Tests output-base-uri (3.0)</p>
   </t:description>
   <t:pipeline>
      <p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0">
         <p:output port="result"/>
         <p:xslt version="3.0" output-base-uri="xslt/" xml:base="http://xproc-test/">
            <p:with-input port="source">
               <doc/>
            </p:with-input>
            <p:with-input port="stylesheet">
               <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="3.0">
                  <xsl:template match="/">
                     <xsl:result-document href="one.xml">
                        <one/>
                     </xsl:result-document>
                     <xsl:result-document href="two.xml">
                        <two/>
                     </xsl:result-document>
                  </xsl:template>
               </xsl:stylesheet>
            </p:with-input>
         </p:xslt>
         <p:for-each>
            <p:with-input pipe="secondary"/>
            <p:insert position="first-child" match="/*">
               <p:with-input port="insertion">
                  <uri>{base-uri(.)}</uri>
               </p:with-input>
            </p:insert>
         </p:for-each>
         <p:wrap-sequence wrapper="wrapper"/>
      </p:declare-step>
   </t:pipeline>
   <t:schematron>
      <s:schema xmlns="http://www.w3.org/1999/xhtml"
                xmlns:s="http://purl.oclc.org/dsdl/schematron"
                queryBinding="xslt2">
         <s:pattern>
            <s:rule context="/">
               <s:assert test="/wrapper">The document root is not 'wrapper'.</s:assert>
               <s:assert test="/wrapper/one/uri/text()='http://xproc-test/xslt/one.xml'">Element 'one' does not have a text child 'http://xproc-test/xslt/one.xml'.</s:assert>
               <s:assert test="/wrapper/two/uri/text()='http://xproc-test/xslt/two.xml'">Element 'two' does not have a text child 'http://xproc-test/two/one.xml'.</s:assert>
            </s:rule>
         </s:pattern>
      </s:schema>
   </t:schematron>
   <t:result name="ab-xslt-041.xml">
      <wrapper>
         <one>
            <uri>http://xproc-test/xslt/one.xml</uri>
         </one>
         <two>
            <uri>http://xproc-test/xslt/two.xml</uri>
         </two>
      </wrapper>
   </t:result>
</t:test>
