我有一个带有元素ValidationFault
的XML有效负载。我的部分验证是确认ValidationFault
元素只在XML有效负载中出现一次。使用以下Citrus Java DSL:
runner.receive(action -> action.endpoint(endpointName)
.validate("number://ValidationFault", 1));
我没有得到预期值1,而是0:
com.consol.citrus.exceptions.TestCaseFailedException: Validation failed: Values not equal for element '//ValidationFault', expected '1' but was '0'
我已手动确认响应有效负载确实包含有问题的元素。我还使用外部工具验证了XPath,发现XPath应该是正确的。我也尝试使用名称空间,//soapenv:ValidationFault
和//:ValidationFault
,但我收到了同样的例外。
这是收到的XML有效负载(删除了一些数据):
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header/>
<SOAP-ENV:Body
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Fault>
<faultcode>soapenv:Client</faultcode>
<faultstring>ValidationFault</faultstring>
<faultactor>GetSalutation</faultactor>
<detail>
<ValidationFault
fault:retryable="false"
xmlns="http://domain/fault/2.0/"
xmlns:fault="domain/fault/2.0/">
<ErrorCode>flt-00001</ErrorCode>
<DescriptionText>A Schema Validation Failed</DescriptionText>
<Details>
<Text></Text>
</Details
<TransactionControlIdentificationID>
TBD
</TransactionControlIdentificationID>
<ZuluDateTime><ZuluDateTime>
</ValidationFault>
</detail>
</soapenv:Fault>
</SOAP-ENV:Body>
</soapenv:Envelope>
答案 0 :(得分:1)
您需要使用名称空间上下文来声明Xpath表达式评估的名称空间前缀:
receive(action -> action.endpoint(fooChannel)
.namespace("ns", "http://domain/fault/2.0/")
.validate("number:count(//ns:ValidationFault)", 1));
默认情况下,Xpath表达式的计算结果为节点值。因此,请确保使用count()
函数来评估元素的数量。
作为替代方案,您可以评估节点集并使用Hamcrest匹配器hasSize()
:
receive(action -> action.endpoint(fooChannel)
.namespace("ns", "http://domain/fault/2.0/")
.validate("node-set://ns:ValidationFault", Matchers.hasSize(1)));