Description
Problem to solve
Firstly, I would like to thank this wonderful project and the efforts of its developers in the open source community.
I consider HURL excellent for testing Rest API.
However, the tests themselves could function as documentation if written well.
One of the things that prevents me from doing this is being forced to put unformatted JSON in the tests.
Another problem that it generates is that any ordering change in the properties and we have to correct all the tests.
These seem like simple problems, but they become serious and impeding as the number of tests increases and the complexity of the JSON API data increases.
This problem has already been mentioned and discussed: #272 #270
Proposal
My proposal is to ignore the problem of semantic validation of XML for now and start by solving the problem of semantic validation of JSON.
Libraries like serde json create the Value structure that allows you to compare JSON semantically.
Multiline body starting with ```json should be parsed with the library and the server response as well.
assert_eq!(
test_multi_line_json.parse::<serde_json::Value>().unwrap(),
server_response.parse::<serde_json::Value>().unwrap()
);
Additional context and resources
Tasks to complete
- parse with serde json the expected multiline JSON defined in tests.hurl
- parse the response body
- in case of any error of parsing the test fail
- compare both
Value
with the simple eq operator in rust