SoapUI is a great tool for functional testing, web services testing, security testing and load testing. In this tutorial, we are going to discuss the important features of SoapUI and SoapUI Pro.
This is the 2nd tutorial in our SoapUI web service testing tutorial series.
For more advanced and enterprise users SmartBear also released the latest SoapUI NG Pro version which includes all the features of SoapUI and SoapUI Pro along with some really cool new features. SoapUI NG pro is embedded in SmartBear “Ready! API Platform”.
For all our tutorials the focus will be on core features of the original SoapUI and Pro version.
What You Will Learn:
Important features of SoapUI and SoapUI Pro:
#1. User-Friendly GUI
Even without prior familiarity, SoapUI is very comfortable for new users to work with. For example, if we wish to create a SoapUI project, just click on the File menu and then click New SOAP Project option and then provide valid WSDL file path. That’s it. Similarly, if you take any assignment in SoapUI tool, we can do it as easily as Microsoft suites.
#2. Easy for Functional Testing
SoapUI provides drag and drops options for creating test suites, test steps and test requests to build complex test scenarios without writing any background scripts. Once a project is created, then we can add test suites under it. Test suite includes test steps and test requests based on the services.
A project can be used several times for smoke testing and functional testing. If we need any test suites for other projects, SoapUI offers the feature called cloning which enables us to duplicate existing test suites and put them into other projects.
SoapUI also provides options for test debugging that lets us watch the test execution step by step. With the help of SoapUI, we can also perform data driven testing within a short period of time. All of these are going to be addressed in greater detail later.
#3. Vulnerability Testing
SoapUI and SoapUI Pro tools provide options to protect the websites from hackers and viral software applications. Vulnerability testing is a type of testing that helps us to identify the weak areas of web applications.
With the SoapUI family tools, we can protect applications by executing Test Generator, SQL Injection and XML Bomb methods. Test Generator is a SoapUI Pro feature. It helps to create complete vulnerability test suites.
Similarly, SQL Injection feature allows us to provide some standard SQL queries and methods to identify the weak areas of the application and database side.
For example, see the below SQL query:
Select *from Customers where CustomerId = “C2014” or 1=1
The above query will return all the customers since the 1=1 condition is always true. This way hacker can get all the username and passwords easily with this sample query. SoapUI tool can simulate these queries so we can understand the hack-proof-ness of the site.
XML bomb is in SoapUI that allows us to test services by passing huge XML data and examines the overflow of the application.
In addition to these, SoapUI tool has many more features like cross-site scripting, passing random string data to identify the string vulnerabilities, boundary level testing, etc.
#4. Load Testing using LoadUI
SoapUI can also estimate a web application’s load balancing capacity. To do so, SoapUI includes an option called LoadUI that is available on the toolbar. After creating a project with proper test suites we can move to load testing by just clicking on the LoadUI option. SoapUI then navigates to the LoadUI tool (it should have pre-installed on your computer for this to work) and then to the tests can be configured based on the need.
After executing the load test, LoadUI will generate a report that helps determine whether the application can run with a heavy load or not.
#5. Automation with Groovy
As discussed before, we can use SOAP and REST based services to validate in SOAPUI. SoapUI user interface is designed as a simple and comfortable interface for all the users.
To write automation scripts in SoapUI, we need to add Groovy Test step under the test suite. The groovy script has built-in libraries and allows us to integrate java based libraries too. So, it will be very helpful if you are familiar with Core Java. We can write complex scenarios using Groovy script and java.
For example, consider a situation where you need a response from one test request and then pass it as an input to another request. To accomplish this, we could store the response data in global properties and then reuse them through the scripts.
See the sample screenshot which shows Groovy script test step and a sample script:
(Click on image for enlarged view)
#6. Data Driven Testing
SoapUI Pro supports data driven testing. It lets us perform bulk insert, delete and update related testing. We could upload Excel/CSV format test data to perform bulk testing.
In order to perform data driven testing in SoapUI, we will have to add DataSource and DataSourceLoop test steps under the test suite. DataSource test step deals with the external data source configuration and DataSourceLoop fetches the data row by row from the external data source. More information on this is coming up in the future articles.
#7. Assertions
Assertions are another key feature in SoapUI. It basically validates the response message while executing the test steps by comparing it to any part of the response message or entire message.
For example, if we have an authentication web service which should authenticate the login credentials given by the user. Let’s assume the web service response is in JSON format. So if the authentication is done successfully means, service will return successful message to the user.
Here’s a sample response:
Successful Authentication:
Response [
{
“Message”: “Successfully Authenticated”,
“Status”: “true”
}]
Failure Authentication:
Response [
{
“Message”: “Authenticate Failed”,
“Status”: “false”
}]
In the above responses, we have “Message” and “Status” elements. So, it is easy to validate these responses using either “Message” or “Status” value. For that, we need to configure in the respective assertions appropriately as XPath Match assertion, XQuery, Contains and Not Contains etc.
SoapUI NG Pro:
SoapUI recently released the latest version of SoapUI Pro. It is basically developed on core SoapUI so you can continue using SoapUI existing projects with this version as well.
You can compare features of SoapUI and SoapUI NG Pro on this page: Feature comparison of SoapUI and SoapUI NG Pro.
SoapUI NG Pro Important Features:
1. SoapUI NG Pro gives the complete functional testing capability for SOAP API, REST and other protocols
2. SoapUI NG Pro is introduced in “Ready! API platform” which determines the actual functionality of the API service and its expected behaviour.
3. Ready! API platform provides the skeleton that determines our service inputs to generate the test coverage report which evaluates the functionality coverage implicitly.
4. It allows ad-hoc testing or command line interface to test our APIs effectively.
5. All the REST, SOAP API and other service components can be used by simply drag and drop method
6. In SoapUI NG Pro, a data driven feature is little enhanced in retrieving information from external data sources, for example, Excel, XML, JDBC data sources and file/directories etc. Then these retrieved data will be converted into SoapUI NG Properties test step.
7. We can transfer the property test step values to XPath-queries, scripts and so forth.
8. SoapUI NG Pro offers the feature called point-and-click to generate test scenarios quickly
9. SoapUI NG Pro allows the end user to customize their services easily even they are new to SoapUI Pro or development experience.
10. Few more important features available in SoapUI NG Pro:
- Test Coverage: To analyze the API tests along with the functionality as expected
- Multi-environment Support: Allows changing the testing environment based on our requirements
- Test Debugging: This feature helps to analyze the test step-by-step debugging. It also includes variables, properties, input requests etc.
- Complex Scenarios: SoapUI NG Pro makes it easier the APIs which are involved in client-server architecture
- Drag and Drop Test Creation: As it exists, it is easy to create and run the test scenarios by drag and drop feature
- SoapUI team also introduced LoadUI NG tool for LoadUI Pro users. It is used for performing load testing on Ready! API platform. It basically simulates the SoapUI NG Protest cases and determines the load of the application server
Conclusion:
SoapUI and SoapUI Pro features are helpful to build and deliver web services with fewer defects. SoapUI and SoapUI Pro also support other features like service mock testing, multiple environments, generating quick reports, SQL builder/editor and so on.
Next Tutorial: So far in this tutorial, we discussed the major features of SoapUI, SoapUI Pro (and SoapUI NG Pro) tools. In next tutorial, we will learn installation of SoapUI and SoapUI Pro. Also, we will see the major differences between SoapUI, SoapUI Pro and their plugins.
Keep reading and don’t forget to post your queries in comments below.
Nice one. Is it necessary to learn core java or enough woth groovy scripting??
Thank you team for the article
Hi STH,
This is really helpful to understand the concepts easily
nice. waiting for installation part
Hi Vijay,
I want to populate database by calling rest api by using automation test script.
So my task is to load test rest api using automation test script & at the same time generate lots of test data in the database.
How to perform this with Soap ui ? Can you please help me out?
Hi @Manjunath Mudhol,
It is not mandatory to learn Java for performing automation testing using SoapUI. You can also write Java based automation scripting in SoapUI as Groovy Teststep supports Java based scripting.
It’s good article will be waiting for the next one…
Thank you for sharing this article.this is very helpul to understand testing concepts
This is very useful article
Team,
Not sure the reason but i dint get any mail regarding for Tutorial#2. But now i received mail for tutorial 3 and then i searched for Tutorial 2. Please make sure iam looped in all emails for all tutorials.
Thank You Karunagara Pandi
@All: Thank you for reading and supporting us!
very very helpful tutorials. everything is explained clearly and precisely. thankyou for taking so much effort for the welfare of others.
I wanted to ask if we need to have knowledge of HTML and XML to perform testing in SOAP UI?
@Kanika
It is not necessary to have knowledge about HTML and XML to perform testing using SOAPUI.
Basic testing skills is enough
Good information,, Good to know LOADUI is also integrated into the SOAPUI
it is very nice article,thank for a valueble information
Very clear and precise to understand the QAs who wanted to start working on SoapUI Webservices
Can someone give an example of how to compare results for a JSON parsed and stored in a array and then used for comparing with DB query
Where is next tutorial link?
This is really helpful to understand the concepts easily and precisely.
How much knowledge we need to have to write automation scripts.
Nice article. Nice presentation and easy to understand
This is by far the best article I have read on SOAP UI. Great work. Keep posting !!