nw-validate-with-xsd-001

A simple validation with XSD test.

Test nw-validate-with-xsd-001.xml is expected to pass.

It requires the following features: p-validate-with-xsd.

The pipeline


<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" name="pipeline" version="3.0">
   <p:output port="result"/>
   <p:validate-with-xml-schema>
      <p:with-input port="source">
         <doc>
            <title>Title</title>
            <p>Some paragraph.</p>
         </doc>
      </p:with-input>
      <p:with-input port="schema">
         <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
            <xs:element name="doc">
               <xs:complexType>
                  <xs:sequence>
                     <xs:element minOccurs="0" ref="title"/>
                     <xs:element minOccurs="0" maxOccurs="unbounded" ref="p"/>
                  </xs:sequence>
               </xs:complexType>
            </xs:element>
            <xs:element name="title" type="xs:string"/>
            <xs:element name="p" type="xs:string"/>
         </xs:schema>
      </p:with-input>
   </p:validate-with-xml-schema>
</p:declare-step>
MorganaXProc passing XML Calabash passing

Schematron validation


<s:schema xmlns="http://www.w3.org/1999/xhtml" xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
   <s:pattern>
      <s:rule context="/">
         <s:assert test="doc">The pipeline root is not “doc”.</s:assert>
      </s:rule>
      <s:rule context="doc">
         <s:assert test="title">There’s no “title” element.</s:assert>
         <s:assert test="p">There’s no “p” element.</s:assert>
         <s:assert test="title[.='Title']">The title is incorrect.</s:assert>
         <s:assert test="p[.='Some paragraph.']">The paragraph is incorrect.</s:assert>
      </s:rule>
   </s:pattern>
</s:schema>

Revision history

10 Jun 2021, Achim Berndzen

Added attribute 'queryBinding' to schematron's schema.

21 Jul 2019, Norman Walsh

Initial publication