<?xml version="1.0" encoding="utf-8"?>
<t:test xmlns:t="http://xproc.org/ns/testsuite/3.0"
        xml:base="ab-cast-content-type-018.xml"
        name="ab-cast-content-type-018.xml"
        expected="pass">
   <t:info>
      <t:title>cast-content-type 018 (AB)</t:title>
      <t:revision-history>
         <t:revision>
            <t:date>2021-06-10</t:date>
            <t:author>
               <t:name>Achim Berndzen</t:name>
            </t:author>
            <t:description xmlns="http://www.w3.org/1999/xhtml">
               <p>Added attribute 'queryBinding' to schematron's schema.</p>
            </t:description>
         </t:revision>
         <t:revision>
            <t:date>2020-04-11</t:date>
            <t:author>
               <t:name>Achim Berndzen</t:name>
            </t:author>
            <t:description xmlns="http://www.w3.org/1999/xhtml">
               <p>Change escaped '{' and '}' in test to single ones.</p>
            </t:description>
         </t:revision>
         <t:revision>
            <t:date>2019-12-27</t:date>
            <t:author>
               <t:name>Achim Berndzen</t:name>
            </t:author>
            <t:description xmlns="http://www.w3.org/1999/xhtml">
               <p>Initial tests for the new iteration of p:cast-content-type</p>
            </t:description>
         </t:revision>
      </t:revision-history>
   </t:info>
   <t:description xmlns="http://www.w3.org/1999/xhtml">
      <p>Tests casting from JSON content type to a text document.</p>
   </t:description>
   <t:pipeline>
      <p:declare-step xmlns:map="http://www.w3.org/2005/xpath-functions/map"
                      xmlns:p="http://www.w3.org/ns/xproc"
                      name="pipeline"
                      version="3.0">
         <p:output port="result"/>
         <p:cast-content-type content-type="text/plain" name="caster">
            <p:with-input>
               <p:inline content-type="application/json"
                         document-properties="map{'base-uri' : 'http://xproc-test.org',                         'serialization' : map{'method' : 'json'},                         'additional' : 'property'}">{{"key" : "value"}}</p:inline>
            </p:with-input>
         </p:cast-content-type>
         <p:wrap-sequence wrapper="text" name="wrapper"/>
         <p:cast-content-type content-type="application/xml" name="properties">
            <p:with-input select="p:document-properties(.)" pipe="@caster"/>
         </p:cast-content-type>
         <p:wrap-sequence wrapper="result">
            <p:with-input pipe="@wrapper @properties"/>
         </p:wrap-sequence>
      </p:declare-step>
   </t:pipeline>
   <t:schematron>
      <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>
            <s:rule context="/">
               <s:assert test="result">The root element is not result.</s:assert>
               <s:assert test="result/text">Root element does not have a child 'text'.</s:assert>
               <s:assert test="result/fn:map">Root element does not have a child 'fn:map'.</s:assert>
               <s:assert test="result/fn:map/fn:string[@key='base-uri']='http://xproc-test.org'">The base-uri property is not correct.</s:assert>
               <s:assert test="result/fn:map/fn:string[@key='content-type']='text/plain'">The content-type property is not correct.</s:assert>
               <s:assert test="result/fn:map/fn:string[@key='additional']='property'">The additional property is not correct.</s:assert>
               <s:assert test="not(result/fn:map/fn:map[@key='serialization'])">There should be no serialization property.</s:assert>
            </s:rule>
            <s:rule context="/result/text/text()">
               <s:assert test="starts-with(., '{')">Serialized map does not start with '{'.</s:assert>
               <s:assert test="ends-with(., '}')">Serialized map does not end with '}'.</s:assert>
               <s:assert test="contains(., '&#34;key&#34;')">Serialized map does not contain 'key'.</s:assert>
               <s:assert test="contains(substring-after(.,'&#34;key&#34;'), ':')">Serialized map does not contain ':' after "key".</s:assert>
               <s:assert test="contains(substring-after(., ':'), '&#34;value&#34;')">Serialized map does not contain 'value' after ".".</s:assert>
            </s:rule>
         </s:pattern>
      </s:schema>
   </t:schematron>
   <t:result name="ab-cast-content-type-018.xml">
      <result>
         <text>{"key":"value"}</text>
         <map xmlns="http://www.w3.org/2005/xpath-functions">
            <string key="base-uri">http://xproc-test.org</string>
            <string key="additional">property</string>
            <string key="content-type">text/plain</string>
         </map>
      </result>
   </t:result>
</t:test>
