Features: p-validate-with-relax-ng

ab-validate-with-relax-ng-001

Basic test, standard grammar.

Test is expected to pass.

The pipeline

<p:declare-step xmlns:p="http://www.w3.org/ns/xproc"
                xmlns:t="http://xproc.org/ns/testsuite/3.0" name="pipeline" version="3.0">
   <p:output port="result"/>
   <p:validate-with-relax-ng>
      <p:with-input port="source">
         <doc>
            <title>Title</title>
            <p>Some paragraph.</p>
         </doc>
      </p:with-input>
      <p:with-input port="schema">
         <grammar xmlns="http://relaxng.org/ns/structure/1.0">
            <start>
               <ref name="doc"/>
            </start>
            <define name="doc">
               <element name="doc">
                  <optional>
                     <ref name="title"/>
                  </optional>
                  <zeroOrMore>
                     <ref name="p"/>
                  </zeroOrMore>
               </element>
            </define>
            <define name="title">
               <element name="title">
                  <text/>
               </element>
            </define>
            <define name="p">
               <element name="p">
                  <text/>
               </element>
            </define>
         </grammar>
      </p:with-input>
   </p:validate-with-relax-ng>
</p:declare-step>

Result

<doc xmlns:t="http://xproc.org/ns/testsuite/3.0">
   <title>Title</title>
   <p>Some paragraph.</p>
</doc>

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:pattern>
      <s:rule context="/">
         <s:assert test="doc">The element root is not “doc”.</s:assert>
         <s:assert test="doc/title">The element root does not have a child 'title'.</s:assert>
         <s:assert test="doc/p">Element root does not have child 'p'.</s:assert>
      </s:rule>
   </s:pattern>
</s:schema>

Revision history

10 Jun 2021, Achim Berndzen
Added attribute 'queryBinding' to schematron's schema.
02 Aug 2019, Achim Berndzen
Initial publication