有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java XPath验证找不到元素

我有一个包含元素ValidationFault的XML负载。我验证的一部分是确认ValidationFault元素在XML负载中只出现一次。使用以下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>

共 (1) 个答案

  1. # 1 楼答案

    您需要使用一个名称空间上下文来声明Xpath表达式计算的名称空间前缀:

    receive(action -> action.endpoint(fooChannel)
            .namespace("ns", "http://domain/fault/2.0/")
            .validate("number:count(//ns:ValidationFault)", 1));
    

    默认情况下,Xpath表达式的计算结果为节点值。因此,请确保使用count()函数来计算元素的数量

    作为替代方案,您可以对节点集求值,并使用Hamcrest matcher hasSize()

    receive(action -> action.endpoint(fooChannel)
            .namespace("ns", "http://domain/fault/2.0/")
            .validate("node-set://ns:ValidationFault", Matchers.hasSize(1)));