<?xml version="1.0" encoding="UTF-8"?>
<t:test expected="pass" features="p:file-move p:directory-list"
        xmlns:t="http://xproc.org/ns/testsuite/3.0">
   <t:info>
      <t:title>p:file-move 002 (AB)</t:title>
      <t:revision-history>
         <t:revision>
            <t:date>2022-08-02</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 p:file-move</p>
   </t:description>
 
   <t:file-environment>
      <t:file path="folder/file.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:file-move href="../testfolder/folder" target="../testfolder/new-folder" name="move"/>
         <p:directory-list path="../testfolder" max-depth="unbounded" depends="move"/>
      </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:ns uri="http://www.w3.org/2001/XMLSchema" prefix="ns" />
         <s:pattern>
            <s:rule context="/">
               <s:assert test="c:directory">Root element is not c:directory.</s:assert>
               <s:assert test="c:directory/@name = 'testfolder'">Directory element does not have @name with 'testfolder'.</s:assert>
               <s:assert test="c:directory/c:directory[@name='new-folder']">There is no inner directory element with @name = 'new-folder'.</s:assert>
               <s:assert test="not(c:directory/c:directory[@name='folder'])">There is an unexpected inner directory element with @name = 'folder'.</s:assert>
               <s:assert test="c:directory/c:directory[@name='new-folder']/c:file[@name='file.txt']">There is no entry for 'file.txt' in 'new-folder'.</s:assert>
               <s:assert test="count(c:directory/c:directory)=1">There is not exactly one directory element in the outer directory.</s:assert>
            </s:rule>
         </s:pattern>
      </s:schema>
   </t:schematron>
</t:test>