gpt4 book ai didi

java - Citrus XPath 验证找不到元素

转载 作者:行者123 更新时间:2023-12-02 02:05:56 25 4
gpt4 key购买 nike

我有一个带有元素 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>

最佳答案

您需要使用命名空间上下文来声明 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)));

关于java - Citrus XPath 验证找不到元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50804863/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com