java - Citrus XPath 验证找不到元素

标签 java xml xpath citrus-framework

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

相关文章:

java - 从适配器访问时 EditText 返回 null

ios - 如何从iOS写入XML文件?

java - 使用 apache commons csv 读取 csv 文件时跳过双引号

java - Jasmin IDE 插件或编辑器

Java 数组列表创建

xpath - XPath检查不存在的节点

html - 用于选择另一个元素附近(之前和之后)的标签的 XPath?

json - JSON 字段名称可以以数字开头吗?

sql - XML 解析 : line 1, 字符 80,输入意外结束

python - python中插入节点替换前一个节点