Features: p:directory-list

p:directory-list 040 (AB)

Tests p:directory-list: override-content-types

Test is expected to pass.

The pipeline

<p:declare-step xmlns:c="http://www.w3.org/ns/xproc-step"
                xmlns:p="http://www.w3.org/ns/xproc"
                xmlns:t="http://xproc.org/ns/testsuite/3.0" version="3.0">
   <p:output port="result"/>
   <p:directory-list path="../testfolder"
                     detailed="true" max-depth="unbounded"
                     override-content-types="[['\.txt$','application/octet-stream']]"/>
</p:declare-step>

Result

<c:directory xmlns:c="http://www.w3.org/ns/xproc-step"
             xmlns:cx="http://xmlcalabash.com/ns/extensions"
             xmlns:t="http://xproc.org/ns/testsuite/3.0"
             xml:base="file:/woodpecker/src/codeberg.org/xmlcalabash/xmlcalabash3/tests/3.0-test-suite/test-suite/testfolder/" name="testfolder" readable="true"
             writable="true" cx:executable="true"
             cx:group-readable="true" cx:group-writable="false"
             cx:group-executable="true" cx:other-readable="true"
             cx:other-writable="false" cx:other-executable="true" hidden="false"
             size="4096" last-modified="2025-06-19T18:05:18Z">
   <c:file xml:base="file1.txt" name="file1.txt"
           content-type="application/octet-stream" readable="true" writable="true"
           cx:executable="false" cx:group-readable="false"
           cx:group-writable="false" cx:group-executable="false"
           cx:other-readable="false" cx:other-writable="false"
           cx:other-executable="false" hidden="false" size="0"
           last-modified="2025-06-19T18:05:18Z"/>
   <c:directory xml:base="dir/" name="dir" readable="true"
                writable="true" cx:executable="true"
                cx:group-readable="true" cx:group-writable="false"
                cx:group-executable="true" cx:other-readable="true"
                cx:other-writable="false" cx:other-executable="true"
                hidden="false" size="4096"
                last-modified="2025-06-19T18:05:18Z">
      <c:file xml:base="file2.txt" name="file2.txt"
              content-type="application/octet-stream" readable="true" writable="true"
              cx:executable="false" cx:group-readable="false"
              cx:group-writable="false" cx:group-executable="false"
              cx:other-readable="false" cx:other-writable="false"
              cx:other-executable="false" hidden="false" size="0"
              last-modified="2025-06-19T18:05:18Z"/>
   </c:directory>
</c:directory>

Filesystem environment

DirectoryPermFilenameLast-modifiedSizeEncodingContents (abbreviated)
  .rwxfile1.txt0
  .rwxdir/file2.txt0

Schematron checks

<s:schema xmlns="http://www.w3.org/1999/xhtml"
          xmlns:s="http://purl.oclc.org/dsdl/schematron" xmlns:t="http://xproc.org/ns/testsuite/3.0"
          queryBinding="xslt2">
   <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="c:directory/@name='testfolder'">Root does not have attribute 'name' with 'testfolder'.</s:assert>
         <s:assert test="count(c:directory//c:file)=2">Only two file elements should be present.</s:assert>
         <s:assert test="c:directory/c:file/@name='file1.txt'">There is no file element with @name = 'file1.txt'.</s:assert>
         <s:assert test="//c:file[@name='file1.txt']/@content-type='application/octet-stream'">Content-type of 'file1.txt' is not 'application/octet-stream'.</s:assert>
         <s:assert test="//c:file[@name='file2.txt']/@content-type='application/octet-stream'">Content-type of 'file2.txt' is not 'application/octet-stream'.</s:assert>
      </s:rule>
   </s:pattern>
</s:schema>

Revision history

26 Jul 2022, Achim Berndzen
First shot