Skip to main content

What is API Testing?

For API Testing, First you need to understand What is APIs. Go through the link to get the complete detail regarding the APIs. API Testing is completely different from the GUI Testing. In API Testing we do not consider the presentation of the Web Page, We only consider the Business logic on the Software Architecture for API Testing.

API Testing, API, Business Logic, GUI
Image Source Google

API Testing is the type of software testing to test the API(Application Programming Interface) directly and test the the application to meet the expectations for functionality, Reliability, Performance and Security. API Testing is very important these days for Automation Testing because in API testing we do not need the GUI so for short release and frequent changes, we just need to check the APIs which is commonly used in Agile Methodology.

In API Testing, User send the request to the server using some software, Server provide the response, Note down the response from the server.

If user want to Test any API then user need some tool by which user can send the request to the API or user can write own code to interest with API. Once user send request to the API then user can receive the response from API in following way A Pass or Fail Status, Some Data from API or A further call to another API. Sometimes it also happen that no output at all, In that case QA's role is crucial in SDLC.

API Testing is very important because if API does not work effectively and efficiently, it will never be used by any other even it's free. If API break at any case or error then it breaks not only that single application while it breaks entire chain of Business process.

Following are the Testing method that needed to include in API Testing

  • Functionality Testing: API should work as it is exactly what is is supposed to do.
  • Reliability Testing:API should be reliable and consistently connect.
  • Load Testing: An API should be able to handle a large set of request at same time.
  • Creativity Testing: An API should be handle in different way.
  • Discovery/Documentation  Testing: Manually execute the set of calls listed in the Documentation of API. Like any resource exposed by API should be listed, created and deleted as needed.
  • Security Testing: API should have requirement to provide security like Authentication, Permission and access control.
  • Proficiency Testing: The API increase what developers are able to do.
  • Automation Testing: API testing can be performed with some tools to execute the API on regular basis.

Comments

Popular posts from this blog

How to Put Load on a Script in JMeter

In last post we discussed about how to record a test script and Firefox settings to run the script. In this post we will discuss about how the Thread Group will work, how can we put n number of users to perform load testing, In JMeter by using Thread Group, we can create virtual users. Thread Group is a set of thread which work in same scenario. There are multiple thread group are available which is use to configure how the virtual users interest with the application, How much load maintain and till how much time load maintain.

How to take the Screenshot in Selenium WebDriver?

If we want to take the screenshot then we have to convert our WebDriver object into the screenshot object. we need to change the behavior of the drive to take the screenshot . We can do it by casting

JMeter Overview Description

In this article we will go through the multiple section of JMeter and describe the tool information. we will discuss about every component of JMeter tool in this Article so that you can hands on while working on script on JMeter about these components.