Tests p:file-info
Test ab-file-info-007.xml is expected to pass.
It requires the following features: p:file-info.
<p:declare-step xmlns:c="http://www.w3.org/ns/xproc-step" xmlns:p="http://www.w3.org/ns/xproc" version="3.0">
<p:output port="result"/>
<p:try>
<!-- Windows -->
<p:file-info href="../testfolder/afile.txt"/>
<p:catch>
<!-- Unix -->
<p:file-info href="../testfolder/.afile.txt"/>
</p:catch>
</p:try>
</p:declare-step>
<s:schema xmlns="http://www.w3.org/1999/xhtml" xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
<s:ns uri="http://www.w3.org/ns/xproc-step" prefix="c"/>
<s:ns uri="http://www.w3.org/2001/XMLSchema" prefix="xs"/>
<s:pattern>
<s:rule context="/">
<s:assert test="c:file">Root element is not c:file.</s:assert>
<s:assert test="c:file/@name='afile.txt' or c:file/@name='.afile.txt'">The c:file element does not have an attribute 'name' with 'afile.txt'.</s:assert>
<s:assert test="c:file/@hidden='true' or not(c:file/@hidden)">The c:file element does have a @hidden, but its value is not 'true'.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Initial commit