【问题标题】:Citrus XPath Validation Cannot Find ElementCitrus XPath 验证找不到元素
【发布时间】: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


【解决方案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)));

【讨论】:

    猜你喜欢
    • 2018-08-30
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-05-29
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多