【发布时间】:2018-06-11 19:35:21
【问题描述】:
我有一个带有元素 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>
【问题讨论】:
-
ValidationFault(及其所有后代)位于默认命名空间http://domain/fault/2.0/中。也许这会有所帮助:citrusframework.org/citrus/reference/html/…(我不熟悉柑橘框架。) -
我怀疑它可能是由命名空间引起的,但是使用
//:ValidationFault处理默认命名空间并没有解决问题。
标签: java xml xpath citrus-framework