Skip to main content

Soap UI Assertions

In this post I am going to explain what assertion in soapui is and how we can apply script assertion.

Assertion 

Assertion functionality in SoapUI is used to validate the response of request received by the Test Steps at the time of execution. Usually assertion is to compare a part of message (or the entire message) to some expected value.
Assertion applied in SoapUI at response of request, if any assertion failed then test marked as failed. Failed test can be verify and find out the reason.


Assertion types in SoapUI

1.    Contains
2.    Not Contains
3.    XPath Match
4.    Xquery Match
5.    Scripts
6.    SLA
7.    JMS
8.    JDBC
9.    Security

Script Assertion
In SoapUI Groovy script is used for scripts assertion. Click on assertion option from your created test step.


Click on + icon, select scripts option from popup window and click Add button. Enter assertion name and click on OK button.
Suppose you are getting response in xml format as my test step response is in xml format.


 <responce>
    <status>OK</status>
    <data>2</data>
 </responce>

For above response I used below groovy scrip assertion for status node value


 import com.eviware.soapui.support.XmlHolder
 def holder = new XmlHolder( messageExchange.responseContentAsXml )

 assert holder["//status"] == "OK"
 assert holder["//data"] == "2"




Comments