ab-validate-with-relax-ng-004

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

Test ab-validate-with-relax-ng-004.xml is expected to fail with error code err:XC0155.

It requires the following features: p-validate-with-relax-ng.

The pipeline


<p:declare-step xmlns:err="http://www.w3.org/ns/xproc-error" xmlns:p="http://www.w3.org/ns/xproc" 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>
MorganaXProc passing XML Calabash passing

Revision history

05 Jul 2020, Achim Berndzen

Changed expected error code

02 Aug 2019, Achim Berndzen

Initial publication