When i request for GET request, I'm getting the JSON response, but here my requirement is to validate the structure of response body.
For example:
{
"lotto":{
"lottoId":5,
"winning-numbers":[2,45,34,23,7,5,3],
"winners":[
{
"winnerId":23,
"numbers":[2,45,34,23,3,5]
},
{
"winnerId":54,
"numbers":[52,3,12,11,18,22]
}
]
}
}
The above response having structure, so i need to validate structure instead of one key value pair, how i can achieve this?
The best way is to verify json-schema matching.
Firstly, you need to add this dependency to your pom.xml
Then you need to create a file json-schema-your-name.json with structure like that:
There are a bunch of services which generate schemas based on json - eg - this one
Once schema file is ready, you need to provide a path to your file in a String format - eg -
And invoke
matchesJsonSchemaInClasspath("your/path/to/json-schema")
method for assertion.UPD:
So the flow will basically be like:
Practically, it will look following:
.body(matchesJsonSchemaInClasspath("path/to/your/schema/in/string/format")); }