如何使用空手道DSL读取CDATA元素

时间:2018-09-06 00:26:01

标签: dsl karate

我的XML请求看起来像这样:

  • def ref = ref.substring(0,结束)

  <ns:complete>

     <ns:identifier>23265</ns:identifier>

     <ns:taskData><![CDATA[<sch:SubscriptionApprovalResponse xmlns:sch="http://workflow.subscription.apimgt.carbon.wso2.org">

    <sch:status>APPROVED</sch:status>

    <sch:workflowExternalRef>#(ref)</sch:workflowExternalRef>

    <sch:description></sch:description>

    </sch:SubscriptionApprovalResponse>]]></ns:taskData>

  </ns:complete>

我正在从CDATA主体的外部传递#(ref),但它没有读取它。

我在做错什么吗?

1 个答案:

答案 0 :(得分:0)

是的,因为您试图在CDATA节中使用嵌入式表达式。没有完整的工作示例就不能说。

您应该分两步执行此操作,或使用字符串replacehttps://github.com/intuit/karate#replace

* def baz = 'blah'
* def foo = <bar>#(baz)</bar>
* def xml = <foo><Response><![CDATA[#(foo)]]></Response></foo>
* match xml == <foo><Response><![CDATA[<bar>blah</bar>]]></Response></foo>

* def xml = <foo><Response><![CDATA[<bar>@@baz@@</bar>]]></Response></foo>
* replace xml.@@baz@@ = 'blah'
* match xml == <foo><Response><![CDATA[<bar>blah</bar>]]></Response></foo>