我正在使用Wiremocks创建案例,并且正在生成响应模拟。

我有这样的XML请求:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xw="http://example.com">
    <soapenv:Header/>
    <soapenv:Body>
        <xw:gen>
            <xw:input>
                <xw:element1>0100</xw:element1>
                <xw:element2>741</xw:element2>
                <xw:element3>JAVA</xw:element3>
                <xw:element4>123</xw:element4>
            </xw:input>
            <xw:global>
                <xw:obj1>
                    <xw:attr1>john</xw:attr1>
                    <xw:attr2>doe</xw:attr2>
                </xw:obj1>
            </xw:global>
        </xw:gen>
    </soapenv:Body>
</soapenv:Envelope>


我只需要验证xw:input / xw:element1 = 0100,xw:input / xw:element2 = 741,并且我需要xw:global节点具有任何内容。 xw:global的唯一条件不为空。 (此节点可以是<xw:global></xw:global>)。

这是我在json中的模拟:

{
    "request" : {
        "url" : "/myweb/myrequest.asmx",
        "headers": {
            "SOAPAction": {
                "equalTo": "\"http://example.com/gen\""
            }
        },
        "bodyPatterns" : [ {
            "matchesXPath": "//xw:input[xw:element1=\"0100\" and xw:element2=\"741\" ]",
            "xPathNamespaces" : {
                "xw" : "http://example.com"
            }
        }]
    },
    "response" : {
        "status" : 200,
        "headers": {
            "Content-Type": "text/xml;charset=UTF-8"
        },
        "body" : "<Abody>"
    }
}


问题是:如何验证节点xw:global不为空或不为null?

我尝试使用此matchesXPath,但没有运气:

"matchesXPath": "//xw:input[xw:element1=\"0100\" and xw:element2=\"741\" ] and count(//xw:global) > 0"

谢谢。

最佳答案

我对Wiremock不熟悉,但是您可能需要尝试以下XPath:

"//xw:gen[xw:input[xw:element1=\"0100\" and xw:element2=\"741\"]][xw:global/*]"


上面的XPath检查是否有xw:gen


[xw:input[xw:element1=\"0100\" and xw:element2=\"741\"]]:具有您提到的条件的子元素xw:input
[xw:global/*]:并且子元素xw:global至少包含一个其他任何名称的元素

07-27 21:34