3

尝试使用 Wiremock 作为虚拟化 SOAP 服务的工具。

请求映射标准如下所示:-

映射标准:

   {
      "request":{
        "method":"POST",
        "urlPattern":"/myServices/mycontent.asgx",
        "headers":{
          "SOAPAction":{
            "contains":"#SearchMyContent"
          }
        },
        "bodyPatterns":[{
          **"matchesXPath":"//data:MyContentItemCode[contains(text(), 'SD_12345')] and //MyContentItemCode[contains(text(), 'SD_22222')]",**
          "xPathNamespaces":{
            "SOAP-ENV": "http://schemas.xmlsoap.org/soap/envelope/",
            "data":"http://www.ins.com/insi/1.0/insi-data",
            "msg":"http://www.ins.com/insi/1.0/insi-messaging",
            "nc":"http://www.ins.com/insi/1.0/insi-non-compliant",
            "soapenv":"http://schemas.xmlsoap.org/soap/envelope/",
            "srvc":"http://www.ins.com/insi/1.0/insi-services"
        }
        }]
      },
      "response":{
        "status":200,
        "headers":{
          "Content-Type":"text/xml;charset=utf-8"
        },
        "body":"encoded_XML_body"
      }
    } 

出于安全原因,我无法在此处发布整个 SOAP 服务请求,但下面是 SOAP 服务的一小段,它必须与映射条件中的 xpath 匹配

<srvc:MyContentItemCodeList>
    <data:MyContentItemCode>SD_12345</data:MyContentItemCode>
    <data:MyContentItemCode>SD_22222</data:MyContentItemCode>
</srvc:MyContentItemCodeList>

如您所见,我正在尝试匹配映射条件中的“ data:MyContentItemCode ”标签。但是,wiremock 不识别/支持这一点。这可能是因为 xpath 返回一个布尔值。我的问题是 - 有没有办法匹配 Wiremock 中的布尔值。

我在这里没有在 Wiremock 文档中找到示例:- http://wiremock.org/docs/request-matching/

当我将映射发布到wiremock服务器时,它确实发布成功但是当我尝试访问wiremock服务器时,我没有得到我的虚拟化响应(即不考虑请求匹配)

对此的任何帮助/指示将不胜感激。

4

1 回答 1

4

您面临的问题是您需要将元素/标签返回给匹配器。这可以通过使用根标签来完成。在这个例子中,我使用了你的例子暗示存在的肥皂信封标签。

仅返回根元素的机制是通过计算与您的条件匹配的元素的数量。如果两者都为真,则还返回根元素。下面的示例就是这样做的。

映射.json

   {
      "request":{
        "method":"POST",
        "urlPattern":"/dtag",
        "bodyPatterns":[{
          "matchesXPath":"/SOAP-ENV:Envelope[count(//data:MyContentItemCode[contains(text(), 'SD_12345')])=1 and count(//data:MyContentItemCode[contains(text(), 'SD_22222')] )=1]",
          "xPathNamespaces":{
            "SOAP-ENV": "http://schemas.xmlsoap.org/soap/envelope/",
            "data":"http://www.ins.com/insi/1.0/insi-data",
            "srvc":"http://www.ins.com/insi/1.0/insi-services"
        }       

        }]
      },
      "response":{
        "status":200,
        "headers":{
          "Content-Type":"text/xml;charset=utf-8"
        },
        "body":"encoded_XML_body"
      }
    } 

下面的 XML 通过 POST 请求发送到下面的 URL。由于 WireMock 对命名空间非常挑剔,因此请确保您拥有与标签相关联的正确命名空间,因为它们出现在您的请求中。

请求http://localhost/dtag

<?xml version="1.0"?>

<soap:Envelope
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
soap:encodingStyle="http://www.w3.org/2003/05/soap-encoding"
xmlns:data="http://www.ins.com/insi/1.0/insi-data"
xmlns:srvc="http://www.ins.com/insi/1.0/insi-services">
    <srvc:MyContentItemCodeList >
    <data:MyContentItemCode>SD_12345</data:MyContentItemCode>
    <data:MyContentItemCode>SD_22222</data:MyContentItemCode>
    </srvc:MyContentItemCodeList>
</soap:Envelope>
于 2018-10-28T20:23:20.717 回答