API Testing With Cypress

Is it possible to test everything using a single tool? Seems like a dream, but I would say it is almost possible with Cypress, a JavaScript frontend testing framework. Cypress is primarily designed for end-to-end testing of web applications, which includes both the frontend user interface (UI) and the backend API interactions.

With Cypress, you can write tests that cover the entire application flow, from interacting with the UI elements to making API requests and validating the responses. This makes Cypress a versatile tool that allows you to test the integration between the UI and the API.

In this tutorial, I will guide you through how we can use Cypress for API testing.

Categories of API Testing

API testing is a type of software testing that focuses on verifying and validating the functionality, reliability, performance, and security of application programming interfaces (APIs). APIs enable communication and data exchange between different software systems, allowing them to interact and share information.

API testing involves testing the various aspects of an API, including its endpoints, input/output data, error handling, and integration with other systems. It ensures that the API behaves as expected, follows the defined specifications, and meets the requirements of the applications or services that rely on it.

APIs Can Be Categorized Into Different Types 

Tools Available for REST API Testing

There are several tools available for API testing, each with its own set of features and capabilities. Here are some popular tools for API testing:

Why Cypress for REST API Testing?

Cypress is primarily known as a frontend testing framework but can also be used effectively for API testing.

Here are some reasons why Cypress can be a good choice for API testing:

How Cypress Executes API Test Cases Internally

Below is a detailed explanation of how Cypress executes API test cases internally. Cypress uses Node.js as an engine to make HTTP requests to the API server.API server responds to the request, and Cypress receives the response through Node.js and can perform assertions or other actions based on the response data.

Cypress Executes API Test Cases Internally

Below are the steps for how API test cases are executed in Cypress:

Test Initialization

Test File Execution

Command Execution and Interception

Request Simulation and Response Capturing

Response Validation and Assertions

Test Reporting

What Is cy.request()?

Cypress leverages the cy.request() command to send HTTP requests to the API server. The cy.request() is a command provided by Cypress that allows you to send HTTP requests and interact with APIs directly within your test cases.

Here are the different variations of the cy.request() command in Cypress:

cy.request(url): This variation sends a GET request to the specified URL.

cy.request(url)

cy.request(url, body): This variation sends a POST request to the specified URL with the provided request body.

cy.request(URL, body)

cy.request(method, url): This variation allows you to specify the HTTP method (e.g., GET, POST, PUT, DELETE) along with the URL.

cy.request(method, url)

cy.request(method, url, body): This variation sends a request with the specified HTTP method, URL, and request body.

cy.request(method, url, body)

cy.request(options): This variation allows you to pass an options object with a detailed configuration for the request.

cy.request(options)

API Methods

GET, POST, PUT, and DELETE are the four most common HTTP methods used in REST APIs. They correspond to the CRUD (create, read, update, delete) operations on resources.

Some Commonly Used HTTP Response Codes in REST 

Some Examples of Different API Methods

Pre-requisites:

Let's take some examples to automate the API endpoint using Cypress for the site. 

POST Method 

POST method is used to send data to a server to create/update a resource.

JavaScript
 
it('POST API Automation Using GoRest API', () => {

const user = {

name: 'John Doe',

email: "johndoe123"+randomNumber+"@example.com",

gender: 'male',

status: 'active',

};

cy.request({

method: 'POST',

url: 'https://gorest.co.in/public/v1/users',

headers: {

Authorization: 'Bearer <Enter token here >,

},

body: user,

}).then((response) => {

userId=response.body.data.id

expect(response.status).to.equal(201);

expect(response.body.data.name).to.equal(user.name);

expect(response.body.data.email).to.equal(user.email);

});

});


Here's a breakdown of the code:

NOTE: A bearer token can be generated from this link.

GET Method 

In the GET method The cy.request function is used to send a GET request to the specified URL: ". The ${userId} is a placeholder that likely refers to the user ID obtained from a previous API call.

JavaScript
 
it('GET API Automation Using GoRest API', () => {

cy.request({

method: 'GET',

url: 'https://gorest.co.in/public/v1'+`/users/${userId}`,

headers: {

Authorization: 'Bearer <Enter token here>,

},

}).then((response) => {

expect(response.status).to.equal(200);

expect(response.body.data.name).to.equal('John Doe');

expect(response.body.data.gender).to.equal('male');

});

});


PUT Method 

The PUT method is used to update the existing data. The cy.request function is used to send a PUT request to the specified URL: '. The ${userId} is a placeholder that likely refers to the user ID obtained from a previous API call.

JavaScript
 
it('PUT API Automation Using GoRest API', () => {

const user = {

name: 'Time Cook',

email: "TimCook123"+randomNumber+"@example.com",

gender: 'male',

status: 'active',

};

cy.request({

method: 'PUT',

url: 'https://gorest.co.in/public/v1'+`/users/${userId}`,

headers: {

Authorization: 'Bearer <Enter token here>,

},

body: user,

}).then((response) => {

expect(response.status).to.equal(200);

expect(response.body.data.name).to.equal(user.name);

expect(response.body.data.email).to.equal(user.email);

});

});


DELETE Method 

The DELETE method is used to delete the created record. In the below code, you can see we have used (${userId}, which we want to delete, and the user ID obtained from a previous API call.

JavaScript
 
it('DELETE API Automation Using GoRest API', () => {

cy.request({

method: 'DELETE',

url: 'https://gorest.co.in/public/v1'+`/users/${userId}`,

headers: {

Authorization: 'Bearer <Enter token here>,

},

}).then((response) => {

expect(response.status).to.equal(204);

});

});


Execution Report of Test Cases

Run the command' yarn cypress open' test cases to start executing in cypress runner.

Below the execution report, all API endpoints are executed successfully. 

Execution report of POST and GET method.

the execution report, all API endpoints are executed successfully.

Execution report of POST and GET method.


Execution report of PUT and DELETE method.


Execution report of PUT and DELETE method.


Wrapping Up

API testing with Cypress offers a powerful and efficient way to validate the functionality, performance, and reliability of your API endpoints. By adopting Cypress for API testing, you can enhance the quality of your applications and deliver a seamless experience to your users.

 

 

 

 

Top