p:send-mail-001

Test p:send-mail. Requires Sendria server to be running.

Test nw-send-mail-001.xml is expected to pass.

It requires the following features: send-mail.

The pipeline


<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0">
   <p:output port="result"/>
   <!-- Clear the Sendria log -->
   <p:http-request href="http://localhost:1080/api/messages/" method="delete">
      <p:with-input>
         <p:empty/>
      </p:with-input>
   </p:http-request>
   <!-- Make sure that succeeded -->
   <p:cast-content-type content-type="application/xml"/>
   <p:validate-with-schematron>
      <p:with-input port="schema">
         <s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron">
            <s:ns prefix="fn" uri="http://www.w3.org/2005/xpath-functions"/>
            <s:pattern name="Root must be map">
               <s:rule context="/fn:map">
                  <s:assert test="fn:string[@key='code'] = 'OK'">Code must be 'OK'</s:assert>
               </s:rule>
            </s:pattern>
         </s:schema>
      </p:with-input>
   </p:validate-with-schematron>
   <!-- Send the email message -->
   <p:send-mail parameters="map{'host':'localhost', 'port':1025,'debug':false()}" auth="map{'username':'username','password':'password'}">
      <p:with-input>
         <p:inline>
            <emx:Message xmlns:emx="URN:ietf:params:email-xml:" xmlns:rfc822="URN:ietf:params:rfc822:">
               <rfc822:from>
                  <emx:Address>
                     <emx:adrs>mailto:user@example.com</emx:adrs>
                     <emx:name>Example User</emx:name>
                  </emx:Address>
               </rfc822:from>
               <rfc822:to>
                  <emx:Address>
                     <emx:adrs>mailto:anotheruser@example.com</emx:adrs>
                     <emx:name>Another User</emx:name>
                  </emx:Address>
               </rfc822:to>
               <rfc822:subject>Plain text email</rfc822:subject>
               <emx:content type="text/plain">
          Do that thing.
        </emx:content>
            </emx:Message>
         </p:inline>
      </p:with-input>
   </p:send-mail>
   <!-- Check the Sendria log -->
   <p:http-request href="http://localhost:1080/api/messages/" method="get"/>
   <p:cast-content-type content-type="application/xml"/>
</p:declare-step>

Schematron validation


<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
   <s:ns prefix="fn" uri="http://www.w3.org/2005/xpath-functions"/>
   <s:pattern name="Root must be map">
      <s:rule context="/fn:map">
         <s:assert test="fn:string[@key='code'] = 'OK'">Code must be 'OK'</s:assert>
         <s:assert test="fn:array[@key='data']/fn:map/fn:string[@key='subject']                             = 'Plain text email'">The subject must be correct</s:assert>
      </s:rule>
   </s:pattern>
</s:schema>

Revision history

30 May 2024, Norm Tovey-Walsh

Test for the p:send-mail step.