assertions-011

Tests a pipeline assertion against a binary document.

Test assertions-011.xml is expected to pass.

The pipeline

<p:declare-step xmlns:cx="http://xmlcalabash.com/ns/extensions" xmlns:err="http://www.w3.org/ns/xproc-error" xmlns:p="http://www.w3.org/ns/xproc" xmlns:s="http://purl.oclc.org/dsdl/schematron" version="3.0">
   <p:import href="https://xmlcalabash.com/ext/library/pipeline-messages.xpl"/>
   <p:output port="result"/>
   <p:load name="load" href="../documents/documents.zip" cx:assertions="map { 'result': 'zip-has-mimetype' }"/>
   <cx:pipeline-messages p:depends="load" level="info"/>
   <p:pipeinfo cx:href="../documents/assertions.xml"/>
</p:declare-step>

Schematron validation

<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
   <s:ns prefix="cx" uri="http://xmlcalabash.com/ns/extensions"/>
   <s:pattern>
      <s:rule context="/">
         <s:assert test="cx:messages">The document root is not correct.</s:assert>
      </s:rule>
   </s:pattern>
   <s:pattern>
      <s:rule context="/cx:messages">
         <s:assert test="cx:message[@level='WARN'                           and contains(@message, 'Mimetype file is missing from ZIP')]">Test did not detect error</s:assert>
      </s:rule>
   </s:pattern>
</s:schema>

Revision history

10 May 2026, Norm Tovey-Walsh

Fixed title.

02 Jan 2025, Norm Tovey-Walsh

Created test.