Basic information for Ready API (SoapUI): API Testing

API-Testing_The-Accountability-of-Testers-or-Developers

What is SoapUI?

SoapUI is an open-source web service testing application for service-oriented architectures (SOA) and representational state transfers (REST). Its functionality covers web service inspection, invoking, development, simulation and mocking, functional testing, load and compliance testing.

Basic kick off with SoapUI:

Once you get SoapUI installed, it will have the dashboard as shown below:

RA10

To add sample test, we need to select between SOAP or REST:

RA1

We will select URL as we want to test REST API. Once URL is selected, we need to provide the URL we need to test. For example I am using StackOverflow public API to get the users:

RA2

Once we click on Next, it will create one new project and in that project it will create a TestSuite where all your test will reside:

RA3

Once we run the test, it will show green or Red color whether the test is passed or failed:

RA4

If the test is passed, it will show the response in JSON which we have got with REST GET request:

RA5

Now as it is mentioned in very first image, if we perform some security tests then it will ask about the things we need to add in security test as shown below:

RA7

Once we click on Finish, it will show the result as below:

RA8

We can get detailed report as well:

RA9

I created one sample Web API on my machine which returns 2 values and I published the API project. When I gave localhost URL in ReadyAPI, It created one new project in ReadyApi and it gave the result as shown below:

RA11

So if the API would be installed on IIS then also APIs can be tested using Ready Api.

As it works with GET, it can work with POST\PUT\DELETE as well:

RA12

Virtual service:

SoapUI provides a feature called Virt in which we can create a virtual service, so if testers want to mock the service without calling the actual REST API, it is possible with SoapUI. We need to create a new Virt as below:

RA15

This Virt can behave as GET\POST etc as per your need and Once the Virt is created, we can even host that Virt on localhost by applying some settings.

To conclude this, if we want to test the scenario of a user account creation, we will create one project and in that there would be a test suite named “Test account creation” and in that suite we can add different test cases as shown below:

RA14

Try it out.

 

Advertisement

One thought on “Basic information for Ready API (SoapUI): API Testing

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s