Citrus XPath 验证找不到元素

Citrus XPath Validation Cannot Find Element

我有一个包含元素 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)));