Xpath 验证 wiremock 匹配 XPath 表达式
Xpath validation wiremock matchesXPath expression
我正在使用 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 不为空或不为空?
我试过这个 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
至少包含一个任意名称的其他元素
我正在使用 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 不为空或不为空?
我试过这个 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
至少包含一个任意名称的其他元素