<?xml version="1.0" encoding="UTF-8"?>
<t:test expected="pass" features="p:directory-list"
        xmlns:t="http://xproc.org/ns/testsuite/3.0">
   <t:info>
      <t:title>p:directory-list 012 (AB)</t:title>
      <t:revision-history>
         <t:revision>
            <t:date>2022-07-24</t:date>
            <t:author>
               <t:name>Achim Berndzen</t:name>
            </t:author>
            <t:description xmlns="http://www.w3.org/1999/xhtml">
               <p>First shot</p>
            </t:description>
         </t:revision>       
      </t:revision-history>
   </t:info>
   <t:description xmlns="http://www.w3.org/1999/xhtml">
      <p>Tests p:directory-list: max-depth=1</p>
   </t:description>
   
   <t:file-environment>
      <t:file path="folder1/file1.txt"/>
      <t:file path="folder1/file2.txt"/>
   </t:file-environment>
   
   <t:pipeline>
      <p:declare-step version="3.0"
                      xmlns:p="http://www.w3.org/ns/xproc"
                      xmlns:c="http://www.w3.org/ns/xproc-step">
         <p:output port="result"/>
         <p:directory-list path="../testfolder"/>
      </p:declare-step>
   </t:pipeline>
   <t:schematron>
      <s:schema queryBinding="xslt2"
                xmlns:s="http://purl.oclc.org/dsdl/schematron"
                xmlns="http://www.w3.org/1999/xhtml">
         <s:ns uri="http://www.w3.org/ns/xproc-step"
               prefix="c"/>
         <s:pattern>
            <s:rule context="/">
               <s:assert test="c:directory">Root element is not c:directory.</s:assert>
               <s:assert test="count(c:directory/c:*)=1">Root element does not have one child with prefix 'c'.</s:assert>
               <s:assert test="c:directory/@name='testfolder'">Root does not have attribute 'name' with 'testfolder'.</s:assert>
               <s:assert test="c:directory/c:directory/@name='folder1'">Second level c:directory with @name='folder1' not found.</s:assert>
               <s:assert test="count(c:directory/c:directory/*)=0">Second level c:directory has an unexpected child.</s:assert>
            </s:rule>
         </s:pattern>
      </s:schema>
   </t:schematron>
</t:test>