Skip to content

AnjarTiyo/RestAssured-Reqres-Automation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Contributors Forks Stargazers Issues MIT License LinkedIn


Logo

Reqres.in API Automated Testing

Reqres.in API automated testing using Rest Assured
Explore the docs »

View Demo · Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. Getting Started
  3. Usage
  4. Feature Tested
  5. Contributing
  6. Contact
  7. Acknowledgments

About The Project

Product Name Screen Shot

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.

(back to top)

Built With

(back to top)

Getting Started

To get a local copy up and running follow these simple example steps.

Installation

Method 1: Trough terminal (Maven Should be Installed)

  1. Clone the repo
    git clone https://github.com/AnjarTiyo/RestAssured-Reqres-Automation.git
  2. Go to project directory
    cd RestAssured-Reqres-Automation
  3. run Maven command
    mvn clean verify

Method 2: Trough Intellij IDEA

  1. Create New Project
  2. Select from "versioning control"
  3. Paste https://github.com/AnjarTiyo/RestAssured-Reqres-Automation.git
  4. Select JDK 1.8
  5. Select maven
  6. Click OK

(back to top)

Usage

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 |
      | eve.holt@reqres.in | pistol   | ValidData    | 200    | OK          | token                                         | token     |
      | eve.holt@reqres.in |          | 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

(back to top)

Feature Tested

  • 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).

(back to top)

Contributing

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!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

License

Distributed under the MIT License. See LICENSE.txt for more information.

(back to top)

Contact

Anjar Tiyo Saputro - @anjartiyo.s - anjar.jog@gmail.com

Project Link: https://github.com/AnjarTiyo/RestAssured-Reqres-Automation

(back to top)

Acknowledgments

(back to top)

About

Reqres.in API Automated Testing using RestAssured

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published