🎾 What is API Chaining?
API chaining is a technique used in API testing to make multiple API requests in a sequence, where each request's response becomes the basis for the next request. This can be achieved using libraries like Rest Assured in Java. API chaining is often used to test scenarios that involve multiple API endpoints or dependent operations. Below is an example of API chaining using Rest Assured:
🎾 API Chaining Scenario:
Let's assume we have a simple scenario where we want to:
- Create a user.
- Retrieve the created user's details.
- Update the user's information.
- Verify the updated user's details.
🎾 API Chaining using Rest Assured
Here's how you can achieve this using Rest Assured:
public class ApiChainingExample {
private static String baseURL = "https://example.com/api"; // Replace with your API base URL
@Test
public void testApiChaining() {
How to Automate GET-POST-PUT-DELETE with Rest Assured
🔆🔺 // Step 1: First We create a user, extract the response JSON to get the user's ID.
String createUserResponse =
RestAssured.given()
.contentType(ContentType.JSON)
.body("{ \"name\": \"John\", \"email\": \"john@example.com\" }")
.when()
.post(baseURL + "/users")
.then()
.statusCode(201)
.extract()
.response()
.asString();
🔆🔺 // Step 2: Then We use the extracted user ID to retrieve the user's details.
String userId = RestAssured
.given()
.when()
.get(baseURL + "/users/{userId}", createUserResponse)
.then()
.statusCode(200)
.extract()
.path("id");
🔆🔺 // Step 3: Update the user's information
RestAssured.given()
.contentType(ContentType.JSON)
.body("{ \"name\": \"Updated John\", \"email\": \"updated_john@example.com\" }")
.when()
.put(baseURL + "/users/{userId}", userId)
.then()
.statusCode(200);
🔆🔺 // Step 4: Verify the updated user's details
RestAssured.given()
.when()
.get(baseURL + "/users/{userId}", userId)
.then()
.statusCode(200)
.assertThat()
.body("name", equalTo("Updated John"))
.body("email", equalTo("updated_john@example.com"));
}
}
This is a basic example of API chaining using Rest Assured. In real-world scenarios, API chaining can involve more complex operations and data handling.
***
For E2E SDET or Automation Testing trainings along with 1:1 career guidance, mock interviews, pair programming sessions refer demo here: https://lnkd.in/giCxnJJ7
***
📗 1:1 Call on Career Guidance: https://lnkd.in/ddayTwnq
Share the scenarios in which you have used API chaining
#sidpost #apitesting #testautomation #automation #software #api #restassured #sdet #technology #qualityassurance
TOP API TESTING INTERVIEW Q&A
*****
For the Top API Testing Interview Q&A, refer the link : https://lnkd.in/drhqciDd
*****
👉 For 1:1 call in Resume & LinkedIn profile help, reach out to me : https://lnkd.in/ddayTwnq
👉 Learn more about API Status codes with examples:
https://lnkd.in/gqCmrjMW
************************************************
************************************************
Learn (API-Microservice)Testing+ Selenium UI Automation-SDET with Self Paced Videos prepared by FAANG employees and LIVE Doubt Session
*******************************************************************For any doubts or career guidance from me, reach out here: https://topmate.io/sidharth_shukla
********************************************************************
****************************************
SDET Interview Question and Answers
TestNG Interview questions and answers
Jenkins Interview Questions and Answers
Appium Interview Questions and Answers
Selenium Interview Questions and answers
Java Coding Interview Questions and Answers
GIT Interview Questions and Answers
************************************************
*************************************************
SeleniumWebdriver Automation Testing Interview Questions:
https://automationreinvented.blogspot.com/search/label/SeleniumWebdriver
API Testing Interview Question Set:
https://automationreinvented.blogspot.com/2022/03/top-80-api-testing-interview-questions.html
DevOps Interview Q&A:
https://automationreinvented.blogspot.com/2021/11/top-11-devops-interview-questions-and.html
Kubernetes Interview Question Set
https://automationreinvented.blogspot.com/search/label/Kubernetes
Docker Interview Question Set
https://automationreinvented.blogspot.com/Docker
Linux Interview question Set
https://automationreinvented.blogspot.com/search/label/Linux
Automation Testing/SDET Framework Design
https://automationreinvented.blogspot.com/search/label/FrameworkDesign
Java Related Interview Question Set
https://automationreinvented.blogspot.com/search/label/Java
GIT Interview Question Set:
https://automationreinvented.blogspot.com/2021/09/top-40-git-interview-questions-and.html
Coding Interview Question Set:
https://automationreinvented.blogspot.com/search/label/Coding%20Questions
Mobile Testing Interview Question Set:
https://automationreinvented.blogspot.com/search/label/Mobile%20Testing
Python Interview Question Set for QAE - SDET - SDE:
https://automationreinvented.blogspot.com/search/label/Python
#APITesting #RestAssured #TestingTips #testautomation #software #api #sdet #automation #restassured #career #technology #qualityassurance
No comments:
Post a Comment