Basic test, standard grammar: assert-valid is true by default, test error raised
Test ab-validate-with-relax-ng-005.xml is expected to fail with error code err:XC0155
.
It requires the following features: p-validate-with-relax-ng.
<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>
<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>
Changed expected error code
Initial publication