如何根据使用wiremock和JSON的请求正文匹配获得响应

时间:2018-05-18 05:23:38

标签: json soap mocking wiremock

如何使用JSON和独立的WireMock验证我的Soap请求是否包含标题和正文中的特定元素。

如果我的请求在标题中包含<a:Id>1876</a:Id>,我应该得到response1否则我应该得到response2

同样我也需要检查身体。

以下是我的请求XML

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:a="http://abc.example.com/a" 
xmlns:b="http://abc.example.com/b"
xmlns:c="http://abc.example.com/c"  
   <soapenv:Header>
      <a:abcHeaders>
         <a:Id>1876</a:Id>
         <a:Xid>12</a:Xid>
      </a:abcHeaders>
   </soapenv:Header>
   <soapenv:Body>
      <b:abcOpern>
         <b:xyz>
            <c:pqr>12</c:pqr>
         </b:xyz>
      </b:abcOpern>
   </soapenv:Body>
</soapenv:Envelope>

1 个答案:

答案 0 :(得分:0)

在WireMock.Net中,您可以使用XPath匹配。有关一些详细信息,请参见here