Features: p-validate-with-relax-ng

ab-validate-with-relax-ng-004

Basic test, standard grammar: assert-valid="true", test error raised

Test is expected to fail with error code err:XC0155.

The pipeline

<p:declare-step xmlns:err="http://www.w3.org/ns/xproc-error"
                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 assert-valid="true">
      <p:with-input port="source">
         <doc>
            <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">
                  <ref name="title"/>
                  <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:identity>
      <p:with-input pipe="report"/>
   </p:identity>
</p:declare-step>

Revision history

05 Jul 2020, Achim Berndzen
Changed expected error code
02 Aug 2019, Achim Berndzen
Initial publication