err-s0002-7 (AB)

Tests XS002 is raised for double names.

Test ab-err-s0002-7.xml is expected to fail with error code err:XS0002.

It requires the following features: file-steps.

The pipeline


<p:declare-step xmlns:err="http://www.w3.org/ns/xproc-error" xmlns:p="http://www.w3.org/ns/xproc" version="3.0">
   <p:output port="result"/>
   <p:variable name="episode" select="p:system-property('p:episode')"/>
   <p:file-create-tempfile delete-on-exit="true"/>
   <p:variable name="path" select="*:result/text()"/>
   <p:choose name="identity">
      <p:when test="true()">
         <p:identity depends="storer" name="identity">
            <p:with-input select="doc($path)">
               <context/>
            </p:with-input>
         </p:identity>
      </p:when>
   </p:choose>
   <p:sink/>
   <p:store href="{$path}" name="storer">
      <p:with-input>
         <doc>{$episode}</doc>
      </p:with-input>
   </p:store>
   <p:choose>
      <p:with-input pipe="@identity"/>
      <p:when test="doc/text() = $episode">
         <p:identity>
            <p:with-input>
               <success/>
            </p:with-input>
         </p:identity>
      </p:when>
      <p:otherwise>
         <p:identity>
            <p:with-input>
               <failure/>
            </p:with-input>
         </p:identity>
      </p:otherwise>
   </p:choose>
</p:declare-step>
MorganaXProc passing XML Calabash passing

Revision history

13 Oct 2021, Achim Berndzen

New test.