I would like write a xPath query for SOAPUI for the validation of parameter Score only under "BDS" for validation value in the parameter.
All response from the code is here:
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<MatchResponse xmlns="http://www.bottomline.com/intellinx/webservices">
<MatchResult><![CDATA[<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<ResultBlock>
<MatchSummary matches="1">
<TotalMatchScore>50</TotalMatchScore>
<Rules totalRuleCount="5">
<Rule ruleCount="1">
<RuleID>Rule3_2_R</RuleID>
<Score>10</Score>
</Rule>
<Rule ruleCount="1">
<RuleID>Rule18_In</RuleID>
<Score>20</Score>
</Rule>
<Rule ruleCount="1">
<RuleID>Rule14_Su</RuleID>
<Score>20</Score>
</Rule>
</Rules>
</MatchSummary>
<ExternalScores>
<ExternalScore>
<extClientLegacy>2003-01-03-03.26.32.285776</extClientLegacy>
<SourceID>BDS</SourceID>
<Score>-1.0</Score>
</ExternalScore>
<ExternalScore>
<extClientLegacy>2003-01-03-03.26.32.285776</extClientLegacy>
<SourceID>O2</SourceID>
<Score>0.128</Score>
</ExternalScore>
</ExternalScores>
<ErrorWarnings>
<Errors errorCount="0"/>
<Warnings warningCount="0"/>
</ErrorWarnings>
</ResultBlock>]]></MatchResult>
</MatchResponse>
</S:Body>
</S:Envelope>
SOAPUI is on the image. And the question is how can i write the xpath.. Thanks a lot!
Since the data is inside of
cdata
, you may have to usegroovy
to achieve the same.Note that the your xml response is edited to make it parse correctly. You may not face this problem as you will have a actual response.
In short, here is what needs to be done:
- extract
cdata
part first to get actual xml where you need to apply the xpath- then extract
xpath
Here is the
Groovy Script
You can also use the above script as
Script Assertion
instead of a separategroovy script
test step, please see the note in the comment part i.e., use context.response instead of xmlHaving said that, you do not required
xpath
assertion.