Reqres.in API automated testing using Rest Assured
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
Here is my project using Rest Assured to Automate API testing on reqres.in. I also implement gherkin languange as main feature of this test. So it's quite easy to understand what to test and how the test work.
This project is based on Reqres - A freely available REST API.
To get a local copy up and running follow these simple example steps.
- Clone the repo
git clone https://github.com/AnjarTiyo/RestAssured-Reqres-Automation.git
- Go to project directory
cd RestAssured-Reqres-Automation
- run Maven command
mvn clean verify
- Create New Project
- Select from "versioning control"
- Paste https://github.com/AnjarTiyo/RestAssured-Reqres-Automation.git
- Select JDK 1.8
- Select maven
- Click OK
Feature: User regisration
Scenario Outline: Successful register new User(s)
Given I post register valid new user with email "<email>", password "<password>", note: "<note>"
When Send request post register new user
Then Status code should be "<status>" - "<detail>"
And Response body "<body_resp>" should return "<response>"
Examples:
| email | password | note | status | detail | response | body_resp |
| [email protected] | pistol | ValidData | 200 | OK | token | token |
| [email protected] | | NoPassword | 400 | Bad Request | Missing password | error |
| not.an.email | pistol | InvalidEmail | 400 | Bad Request | Note: Only defined users succeed registration | error |
| | pistol | NoEmail | 400 | Bad Request | Missing email | error |
| | | NoData | 400 | Bad Request | Missing email | error |
For more examples, please refer to the Documentation
- Authorization
- POST Login user
- Registration
- POST Register New User
- Resources - USERS
- GET All Users within page
- GET Single Users with Id
- POST Create New Users
- PUT Update Users Attributes
- DEL Existing Users
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt
for more information.
Anjar Tiyo Saputro - @anjartiyo.s - [email protected]
Project Link: https://github.com/AnjarTiyo/RestAssured-Reqres-Automation