DEV Community

Cover image for ๐Ÿ”ฅ How to Perform Request & Response Specification in Rest Assured
Pramod Dutta
Pramod Dutta

Posted on

๐Ÿ”ฅ How to Perform Request & Response Specification in Rest Assured

Hey BugHunters, In this video we are going to discuss Request & Response Specification in Rest Assured and Static import in Java.

This is part of the video serious REST Assured API testing Beginner Tutorial

 Rest Assured Tutorial

P.S:
This is Day 16 of the 30 days of API Testing challenge Series. Where will learn the Basics before jumping to API Automation.

๐Ÿš€ Download PPT : https://scrolltest.com/ra/day16

โœ… What is Static members in Java?

We can use static with a variable, method , inner class and blocks.
They are associated with the class not with the object.
You can use them without instantiating the class.
A static variable of a class is shared by every instance of that class.

โœ… What is Specification?

If you are using a multiple tests and want to avoid duplicate request parameters and response, You can use the specification object.
There are two types of specification builder Java classes as mentioned below:

  • RequestSpecBuilder
  • ResponseSpecBuilder

โœ… What is Static members in Java?

We can use static with a variable, method , inner class and blocks.
They are associated with the class not with the object.
You can use them without instantiating the class.
A static variable of a class is shared by every instance of that class.

โœ… What is RequestSpecification?

It used when a few common parameters are needed for multiple and/or different tests while creating a request.
import io.restassured.builder.RequestSpecBuilder;

โœ… What is Response Specification?

This is used to validate a common response or a response needed for multiple tests from the body. We can also merge additional body expectations must all be fulfilled for the test to pass.
import io.restassured.builder.ResponseSpecBuilder;

โœ… What is Rest Assured?

REST Assured is a Java library that provides a domain-specific language (DSL) for writing powerful, maintainable tests for RESTful APIs. I'll be using real-world code examples you can copy, run, and reuse directly in your own test automation efforts

restassured #restassuredtutorial #apitesting #api #automationtesting #manualtesting #testautomation #thetestingacademy #scrolltest

๐Ÿš€ Tools and services I recommend:
Some of the courses that I recommend to become better Automation Tester ๐Ÿ™Œ๐Ÿ™Œ

๐Ÿฆ Learn Jenkins for QA -
https://bit.ly/learnjenkins-p1

๐Ÿ“ธ Programming Java -
https://bit.ly/learnjava2020-p1

๐Ÿš€ All 30 Days Task - https://scrolltest.com/30days/restassured
๐Ÿ“Œ Join 30 Days Challenge Updates - https://scrolltest.com/tta
๐ŸŽ“ Free Automation MasterClass - https://thetestingacademy.com
๐Ÿ“š REST API testing with Python - https://masterapitesting.com

๐Ÿš€ Resources -
http://hamcrest.org/JavaHamcrest/tutorial
https://www.vogella.com/tutorials/Hamcrest/article.html
http://jsonpath.com/

Be sure to subscribe for more videos like this!

 TheTestingAcademy

Top comments (0)