Skip to content

anasanchotene/jsonplaceholder_api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JSONPlaceholder API Test

This project is an automated test suite for the the JSONPlaceholder API programmed in Java and using Maven as project software management. Frameworkium is used to manage dependencies and define structure.

Index

Used Tools

JSONPlaceholder API

JSONPlaceholder is public fake API provides different operations on a list of resources. The goal of this is to use for for tutorials, testing new libraries, sharing code examples and projects such as this.

The API and its documentation is available on https://jsonplaceholder.typicode.com/.

Frameworkium

Frameworkium is an Java framework that provides the code structure guidelines and contains Java libraries to help with writing tests of several types. It can be used for UI, mobile app, API and other forms of testing.

Frameworkium uses Maven as project software management, TestNG as a testing framework and Allure for the generation of the test Report.

More information is available on https://frameworkium.github.io/.

Allure Report

It's a open-source framework designed to create a report with graphical representation of the results. This report tool is already included by Frameworkium and has compatibility with TestNG and Maven.

More information is available on http://allure.qatools.ru/.

Project Documentation

The solution is divided in 4 folders (constant, dto, service and tests).

  • Constant

The constant folder holds the endpoint of the API as well as the different paths available. It's responsible for retrieving the urls that will be consumed by the services. The endpoints mapped for the tests on the JSONPlaceholder API as the BASE_URI and the paths used in the tests.

  • DTO

In this folder you will find all data structures used to transport data from and to the application.

  • Service

Here is where the calls to the API service are implemented.

  • Tests

The test definitions are found here. The methods in this class will connect to the Service class and using the DTOs will verify if the returns from the API are correct. The assertions are made only in this class. Since only little data was needed, it was create within the class but a CSV file or database connection could have been used.

Set Up

In order to run these tests, you will need to install Java JDK 11 and Maven. Available on the following links:

Instructions

After having the Java and Maven installed, the tests should run successfully. Open a terminal in the folder where contains the pom.xml file, in this case, jsonplaceholder_api_test-master folder.

  1. Run Automated Tests

    To run the test use the following command:

    mvn clean verify
    

    This command will run all the test suite, but if you want to run a specific test use this command:

    mvn clean verify -Dtest=<TestClassName>#<MethodName>
    

    If you want to run the List All Resources test for instance, the command would be:

    mvn clean verify -Dtest=ResourceTest#listAllResources
    
  2. Generate Test Report

    After running the automated tests, you can generate a HTML test report running the following command:

    mvn allure:report
    

    The location of the report will be shown in the terminal.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages