How to perform JSON Schema Validation using Rest-Assured?

 

 

Introduction

Have you ever come across a situation in automated API testing where you were not able to identify the issue in the test failure and after debugging for almost multiple hours, finally you ended you noticing that the data type of the value supplied in the response of the API has actually changed and it is the core reason for the test failure!

This type of scenarios can generally happen when you have Third Party APIs integrated in your application. Real time example for such scenario would be integrating with the Bank APIs for making payment for your e-commerce application or may be integrating with Third Party API which provides the registration and login functionality using Two Factor Authentication.

In such a situation, though you would be provided with a detailed documentation of the APIs and functionality, however, it happens that there is a change in the API response from the Third Party application since they cater to multiple clients and might have updated their API, may be for a bug fix or a new feature requirement which you are unaware of.

It is possible that one of the data type of the field received in response is changed to integer from String or vice-versa. Or there is a new field/Object added in the response.Thanks to JSON Schema Validation, these changes can now be caught easily and can save lot of your efforts and time in debugging and finding the issue which leads to the failure of your system.

Before we begin with discussing the JSON Schema validation, let’s first understand what JSON is, and then continue with the JSON Schema Validation.

What is JSON?

JSON stands for JavaScript Object Notation. It was originally specified by Douglas Crockford. It is a lightweight format for storing and transporting data and often used when data is sent from server to webpages. It is self describing and easy to understand.

The following are important syntax rules for JSON:

  • Data is in name/value pairs.
  • Data is separated by commas.
  • Curly braces hold objects.
  • Square brackets hold arrays.

To understand further, let’s take the following JSON file as an example:

{
    "page": 1,
    "total_pages": 2,
    "employee_data": [
        {
            "id": 5,
            "first_name": "Michael",
            "last_name": "Doe",
            "designation": "QA",
            "location": "Remote"
        },
        {
            "id": 6,
            "first_name": "Johnny",
            "last_name": "Ford",
            "designation": "QA",
            "location": "NY,US"
        }
    ],
    "company": {
        "name": "QA Inc",
        "Address": "New Jersey, US"
    }
}

Understanding the JSON File:

The above mentioned file begins with a curly brace { which means the file holds JSON object. Inside the JSON object, data is stored in multiple data types as follows:

The above mentioned file begins with a curly brace {which means the file holds JSON object. Inside the JSON object, data is stored in multiple data types as follows:

1. Root level itself is JSON Object as it has curly bracket to start with and has data is stored in key/value pair :

{
    "page": 1,
    "total_pages": 2
}

2. JSON Array

JSON Array stores data inside the JSON file in a block with square bracket []. If we take the example of the JSON file mentioned above, employee_data JSON array has 2 JSON Objects inside it.

"employee_data": [{
   "id": 5,
   "first_name": "Michael",
   "last_name": "Doe",
   "designation": "QA",
   "location": "Remote"
  },
  {
   "id": 6,
   "first_name": "Johnny",
   "last_name": "Ford",
   "designation": "QA",
   "location": "NY,US"
  }
 ]

3. JSON Object.
As mentioned earlier, data stored within curly braces are JSON Objects and has multiple key/value pairs in it.

company JSON Object holds the data for company details:

"company": {
  "name": "QA Inc",
  "Address": "New Jersey, US"
 }

It can also be referred as company key holding the company details record in its value.

What is JSON Schema?

JSON Schema is a specification for JSON based format for defining the structure of JSON data. It was written under IETF draft which expired in 2011.

JSON Schema helps us in describing the existing data format and providing clear, human and machine readable documentation.

As JSON Schema provides complete structural validation, it helps in automated tests and also validating the client-submitted data for verification.

How do I generate JSON Schema for the JSON Request of an API?

Consider the following example of Post Response from restful-booker website where the following data is returned in response once user hits the post API for creating a new booking:

{
    "bookingid": 1,
    "booking": {
        "firstname": "Jim",
        "lastname": "Brown",
        "totalprice": 111,
        "depositpaid": true,
        "bookingdates": {
            "checkin": "2018-01-01",
            "checkout": "2019-01-01"
        },
        "additionalneeds": "Breakfast"
    }
}

To generate the JSON Schema, we would be using an online JSON schema generator tool from extendsclass.com. Using this tool is very simple, you just need to copy paste the JSON data for which you need to generate the JSON schema and click on the Generate Schema from JSON button on the web page and it will provide you with the JSON schema for the respective JSON data provided.

 

 

Here is the JSON Schema generated for the above JSON data for creating a new booking:

{
    "definitions": {},
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://example.com/object1661496173.json",
    "title": "Root",
    "type": "object",
    "required": ["bookingid", "booking"],
    "properties": {
        "bookingid": {
            "$id": "#root/bookingid",
            "title": "Bookingid",
            "type": "integer",
            "examples": [1],
            "default": 0
        },
        "booking": {
            "$id": "#root/booking",
            "title": "Booking",
            "type": "object",
            "required": [
                "firstname",
                "lastname",
                "totalprice",
                "depositpaid",
                "bookingdates",
                "additionalneeds"
            ],
            "properties": {
                "firstname": {
                    "$id": "#root/booking/firstname",
                    "title": "Firstname",
                    "type": "string",
                    "default": "",
                    "examples": ["Jim"],
                    "pattern": "^.*$"
                },
                "lastname": {
                    "$id": "#root/booking/lastname",
                    "title": "Lastname",
                    "type": "string",
                    "default": "",
                    "examples": ["Brown"],
                    "pattern": "^.*$"
                },
                "totalprice": {
                    "$id": "#root/booking/totalprice",
                    "title": "Totalprice",
                    "type": "integer",
                    "examples": [111],
                    "default": 0
                },
                "depositpaid": {
                    "$id": "#root/booking/depositpaid",
                    "title": "Depositpaid",
                    "type": "boolean",
                    "examples": [true],
                    "default": true
                },
                "bookingdates": {
                    "$id": "#root/booking/bookingdates",
                    "title": "Bookingdates",
                    "type": "object",
                    "required": ["checkin", "checkout"],
                    "properties": {
                        "checkin": {
                            "$id": "#root/booking/bookingdates/checkin",
                            "title": "Checkin",
                            "type": "string",
                            "default": "",
                            "examples": ["2018-01-01"],
                            "pattern": "^.*$"
                        },
                        "checkout": {
                            "$id": "#root/booking/bookingdates/checkout",
                            "title": "Checkout",
                            "type": "string",
                            "default": "",
                            "examples": ["2019-01-01"],
                            "pattern": "^.*$"
                        }
                    }
                },
                "additionalneeds": {
                    "$id": "#root/booking/additionalneeds",
                    "title": "Additionalneeds",
                    "type": "string",
                    "default": "",
                    "examples": ["Breakfast"],
                    "pattern": "^.*$"
                }
            }
        }
    }
}

Understanding the JSON Schema

If you check the JSON data, following two fields are main records:

  • bookingid
  • Object of booking data

The following block generated in JSON Schema talks about these 2 fields that in root, these two fields are required as an Object type.

"title": "Root",
"type": "object",
 "required": [
  "bookingid",
  "booking"
 ],

Next, let’s talk about the properties block inside the JSON Schema. The following block states that bookingid should be in root object and its type should be integer. Hence, in response it is expected that value in this field should be an integer only. So, in case if this type is changed to any other data type like String, Object, long or float, schema validation will fail and we would be able to identify the issue in the schema right away.

"properties": {
  "bookingid": {
   "$id": "#root/bookingid",
   "title": "Bookingid",
   "type": "integer",
   "examples": [
    1
   ],
   "default": 0
  },
  "booking": {
   "$id": "#root/booking",
   "title": "Booking",
   "type": "object",
   "required": [
    "firstname",
    "lastname",
    "totalprice",
    "depositpaid",
    "bookingdates",
    "additionalneeds"
   ],
   "properties": {
    "firstname": {
     "$id": "#root/booking/firstname",
     "title": "Firstname",
     "type": "string",
     "default": "",
     "examples": [
      "Jim"
     ],
     "pattern": "^.*$"
    },
    "lastname": {
     "$id": "#root/booking/lastname",
     "title": "Lastname",
     "type": "string",
     "default": "",
     "examples": [
      "Brown"
     ],
     "pattern": "^.*$"
    },
    "totalprice": {
     "$id": "#root/booking/totalprice",
     "title": "Totalprice",
     "type": "integer",
     "examples": [
      111
     ],
     "default": 0
    },
    "depositpaid": {
     "$id": "#root/booking/depositpaid",
     "title": "Depositpaid",
     "type": "boolean",
     "examples": [
      true
     ],
     "default": true
    },
    "bookingdates": {
     "$id": "#root/booking/bookingdates",
     "title": "Bookingdates",
     "type": "object",
     "required": [
      "checkin",
      "checkout"
     ],
     "properties": {
      "checkin": {
       "$id": "#root/booking/bookingdates/checkin",
       "title": "Checkin",
       "type": "string",
       "default": "",
       "examples": [
        "2018-01-01"
       ],
       "pattern": "^.*$"
      },
      "checkout": {
       "$id": "#root/booking/bookingdates/checkout",
       "title": "Checkout",
       "type": "string",
       "default": "",
       "examples": [
        "2019-01-01"
       ],
       "pattern": "^.*$"
      }
     }
    }
,
    "additionalneeds": {
     "$id": "#root/booking/additionalneeds",
     "title": "Additionalneeds",
     "type": "string",
     "default": "",
     "examples": [
      "Breakfast"
     ],
     "pattern": "^.*$"
    }
   }
  }
}

Likewise, you can notice the data types and required field values mentioned for the other fields in the JSON Schema.

Performing the JSON Schema validation using Rest-Assured

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. One thing I really like about rest-assured is its BDD style of writing tests and one can read the tests very easily in a human readable language.

Getting Started

The project is created using Maven. Once the project is created we need to add the dependency for rest-assured in pom.xml file. TestNG is used as test runner.

Following dependencies are mandatorily required to be added in pom.xml

  • rest-assured dependency is required for running the API tests
  • json-schema-validator dependency is required for validating the JSON Schema.

 

 

The versions of these dependencies have been added in the properties block inside the pom.xml as it is best practice and helps in maintaining the versions with ease as all versions are available at one place.

Checkout my previous blog writing end to end tests using rest-assured to get more insights about how to write tests using rest-assured framework.

Github Repository

 

 

All of the code which is showcased in this blog is available in this github repository.

Do mark a ⭐ and make the project popular so it reaches to the people who want to learn and upgrade and get better understanding about API Test Automation using rest-assured.

Validating the JSON Schema

Step 1: First of all, we need to generate the JSON Schema for the response JSON data which we need to validate.

As we are using the restful-booker create booking API, we would be copy pasting the JSON response and generate the JSON schema using the JSON Schema Validator.

In the screenshot below, on the left hand side we have the JSON response. On clicking the Generate Schema from JSON button, JSON Schema would be generated on the right hand section.

Response received from Create booking API in restful-booker

{
    "bookingid": 1,
    "booking": {
        "firstname": "Jim",
        "lastname": "Brown",
        "totalprice": 111,
        "depositpaid": true,
        "bookingdates": {
            "checkin": "2018-01-01",
            "checkout": "2019-01-01"
        },
        "additionalneeds": "Breakfast"
    }
}

JSON Schema for the above response:

{
    "definitions": {},
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://example.com/object1661586892.json",
    "title": "Root",
    "type": "object",
    "required": ["bookingid", "booking"],
    "properties": {
        "bookingid": {
            "$id": "#root/bookingid",
            "title": "Bookingid",
            "type": "integer",
            "examples": [1],
            "default": 0
        },
        "booking": {
            "$id": "#root/booking",
            "title": "Booking",
            "type": "object",
            "required": [
                "firstname",
                "lastname",
                "totalprice",
                "depositpaid",
                "bookingdates",
                "additionalneeds"
            ],
            "properties": {
                "firstname": {
                    "$id": "#root/booking/firstname",
                    "title": "Firstname",
                    "type": "string",
                    "default": "",
                    "examples": ["Jim"],
                    "pattern": "^.*$"
                },
                "lastname": {
                    "$id": "#root/booking/lastname",
                    "title": "Lastname",
                    "type": "string",
                    "default": "",
                    "examples": ["Brown"],
                    "pattern": "^.*$"
                },
                "totalprice": {
                    "$id": "#root/booking/totalprice",
                    "title": "Totalprice",
                    "type": "integer",
                    "examples": [111],
                    "default": 0
                },
                "depositpaid": {
                    "$id": "#root/booking/depositpaid",
                    "title": "Depositpaid",
                    "type": "boolean",
                    "examples": [true],
                    "default": true
                },
                "bookingdates": {
                    "$id": "#root/booking/bookingdates",
                    "title": "Bookingdates",
                    "type": "object",
                    "required": ["checkin", "checkout"],
                    "properties": {
                        "checkin": {
                            "$id": "#root/booking/bookingdates/checkin",
                            "title": "Checkin",
                            "type": "string",
                            "default": "",
                            "examples": ["2018-01-01"],
                            "pattern": "^.*$"
                        },
                        "checkout": {
                            "$id": "#root/booking/bookingdates/checkout",
                            "title": "Checkout",
                            "type": "string",
                            "default": "",
                            "examples": ["2019-01-01"],
                            "pattern": "^.*$"
                        }
                    }
                },
                "additionalneeds": {
                    "$id": "#root/booking/additionalneeds",
                    "title": "Additionalneeds",
                    "type": "string",
                    "default": "",
                    "examples": ["Breakfast"],
                    "pattern": "^.*$"
                }
            }
        }
    }
}

Project folder structure

We can copy the JSON Schema and create a new JSON file and put it in the src\test\resources folder inside the project.

 

 

Writing JSON Schema Validation test

 

 

If you have used rest-assured previously it is going to be very easy for you to write the JSON Schema validation test.

We need to write the assertion for validating the JSON Schema inside the body() method after the assertThat() method. But before we move to the assertion, we need to read the JSON file we posted inside the src\test\resources folder. For doing that we would be using the InputStream class. The following line of code will help us in reading the JSON Schema file createbookingjsonschema.json

InputStream createBookingJsonSchema = getClass ().getClassLoader ()
    .getResourceAsStream ("createbookingjsonschema.json");

Next, we need to hit the post API and check the JSON Schema in response
by using JsonSchemaValidator.matchesJsonSchema() method and pass the createBookingJsonSchema InputStream instance in it.

The following lines of code will help us in validating the JSON Schema in the response. Interpreting the lines of code given below, we are sending a post request with the body as required for Post API after which we are checking the status code returned in response is 200 and that the body has the JSON Schema as provided in the createBookingJsonSchema instance.

given ().body (newBooking)
    .when ()
    .post ("/booking")
    .then ()
    .statusCode (200)
    .and()
    .assertThat ()
    .body (JsonSchemaValidator.matchesJsonSchema (createBookingJsonSchema));

Running the Tests
It’s time now to run the test and check of the Schema validation happens correctly. Here is the snippet of testng.xml file.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Restful Booker Test Suite">
    <test name="Restful Booker JSON Schema Validation tests">
        <classes>
           <class name="com.restfulbooker.JsonSchemaValidationTest">
                <methods>
                    <include name="testCreateBookingJsonSchema"/>
                </methods>
            </class>
        </classes>
    </test>
</suite> <!-- Suite -->

Let’s run the tests now and validate the JSON Schema. We would be running the tests using TestNG by right clicking on the testng.xml file.

 

 

Tests passed successfully as the JSON Schema received in the Response matches with the JSON Schema provided in the src\test\resources folder.

 

 

Now, let’s make some changes in the JSON Schema in the createbookingjsonschema.json file provided in the src\test\resources

In bookingid field, value of type integer is required however it has been updated to string just to check if the validation is actually working fine.

"properties": {
  "bookingid": {
    "$id": "#root/bookingid",
    "title": "Bookingid",
    "type": "string",
    "examples": [
      1
    ],
    "default": 0
  },

Let’s run the test again by right clicking on the testng.xml file.

 

 

Following error log was generated and displayed in the console, which says that value received in response was an integer whereas value expected was string.

error: instance type (integer) does not match any allowed primitive type (allowed: ["string"])
    level: "error"
    schema: {"loadingURI":"#","pointer":"/properties/bookingid"}
    instance: {"pointer":"/bookingid"}
    domain: "validation"
    keyword: "type"
    found: "integer"
    expected: ["string"]

You See! How easy it is to identify the such kind of Schema related errors which if not done could have taken lot of your efforts as well as time to find it.

Conclusion

In this blog, we went through discussing What is JSON, what are its different Syntax Rule and finally performed the JSON Schema Validation using Rest-Assured framework. I hope you get better vision on performing JSON Schema validation by reading this post.

Happy Testing!

Contact me for Paid trainings related to Test Automation and Software Testing, ping me here