p:encode 001

Test is expected to pass.

The pipeline

<p:declare-step 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:encode>
      <p:with-input>
         <doc/>
      </p:with-input>
   </p:encode>
</p:declare-step>

Result

<c:data xmlns:c="http://www.w3.org/ns/xproc-step"
        xmlns:t="http://xproc.org/ns/testsuite/3.0" encoding="base64"
        content-type="application/xml">PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48ZG9jLz4=</c:data>

Schematron checks

<s:schema xmlns="http://www.w3.org/1999/xhtml"
          xmlns:s="http://purl.oclc.org/dsdl/schematron" xmlns:t="http://xproc.org/ns/testsuite/3.0"
          queryBinding="xslt2">
   <s:ns prefix="c"
         uri="http://www.w3.org/ns/xproc-step"/>
   <s:pattern>
      <s:rule context="/">
         <s:assert test="c:data">Root element is not 'c:data'.</s:assert>
      </s:rule>
   </s:pattern>
   <s:pattern>
      <s:rule context="/c:data">
         <s:assert test="@encoding = 'base64'">The encoding is incorrect.</s:assert>
         <s:assert test="@content-type = 'application/xml'">The content-type is incorrect.</s:assert>
         <s:assert test="starts-with(., 'PD94bW')">Encoded data is incorrect.</s:assert>
      </s:rule>
   </s:pattern>
</s:schema>

Revision history

01 Feb 2025, Norm Tovey-Walsh
Test the p:encode step.