assertions-007

Tests a Schematron assertion.

Test is expected to pass.

Input: source

<not-doc xmlns:t="http://xproc.org/ns/testsuite/3.0"/>

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"
                xmlns:t="http://xproc.org/ns/testsuite/3.0" version="3.0">
   <p:import href="https://xmlcalabash.com/ext/library/pipeline-messages.xpl"/>
   <p:input port="source"/>
   <p:output port="result"/>
   <p:identity name="identity">
      <p:with-input cx:assertions="'input-correct'"/>
   </p:identity>
   <cx:pipeline-messages p:depends="identity"
                         level="info"/>
   <p:pipeinfo cx:href="../documents/assertions.xml"/>
</p:declare-step>

Result

<cx:messages xmlns:cx="http://xmlcalabash.com/ns/extensions"
             xmlns:t="http://xproc.org/ns/testsuite/3.0">
   <cx:message date="2025-06-19T18:02:12X" level="WARN"
               message="Assert on p:identity[identity]/source: The source document is not a doc"/>
</cx:messages>

Schematron checks

<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron"
          xmlns:t="http://xproc.org/ns/testsuite/3.0" 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, 'The source document is not a doc')]">Did not find Schematron report for doc.</s:assert>
      </s:rule>
   </s:pattern>
</s:schema>

Revision history

27 Dec 2024, Norm Tovey-Walsh
Created test.