JsonUnit is a library that simplifies JSON comparison in unit tests. The usage is simple:
importstaticnet.javacrumbs.jsonunit.JsonAssert.*;
importstaticnet.javacrumbs.jsonunit.core.Option.*;
...
// compares two JSON documentsassertJsonEquals("{\"test\":1}", "{\n\"test\": 1\n}");
// compares only partassertJsonPartEquals("2", "{\"test\":[{\"value\":1},{\"value\":2}]}",
"test[1].value");
// extra options can be specifiedassertJsonEquals("{\"test\":{\"a\":1}}",
"{\"test\":{\"a\":1, \"b\": null}}",
when(TREATING_NULL_AS_ABSENT));
// compares only the structure, not the valuesassertJsonEquals("[{\"test\":1}, {\"test\":2}]",
"[{\n\"test\": 1\n}, {\"TEST\": 4}]", when(IGNORING_VALUES))
// Lenient parsing of expected valueassertJsonEquals("{//Look ma, no quotation marks\n test:'value'}", "{\n\"test\": \"value\"\n}");When the values are compared, order of elements and whitespaces are ignored.
You use Hamcrest matchers in the following way
importstaticnet.javacrumbs.jsonunit.JsonMatchers.*;
importstaticorg.junit.Assert.*;
importstaticnet.javacrumbs.jsonunit.core.util.ResourceUtils.resource;
...
assertThat("{\"test\":1}", jsonEquals("{\"test\": 1}"));
assertThat("{\"test\":1}", jsonPartEquals("test", 1));
assertThat("{\"test\":[1, 2, 3]}", jsonPartEquals("test[0]", 1));
assertThat("{\"test\":{\"a\":1, \"b\":2, \"c\":3}}",
jsonEquals("{\"test\":{\"b\":2}}").when(IGNORING_EXTRA_FIELDS));
// Can use other Hamcrest matchers tooassertThat("{\"test\":1}", jsonPartMatches("test", is(valueOf(1))))
assertThat("{\"test\":1}", jsonEquals(resource("test.json")));Fluent (FEST or AssertJ like) assertions are supported by a special module json-unit-fluent
importstaticnet.javacrumbs.jsonunit.fluent.JsonFluentAssert.assertThatJson;
...
// compares entire documentsassertThatJson("{\"test\":1}").isEqualTo("{\"test\":2}");
// compares only parts of the documentassertThatJson("{\"test1\":2, \"test2\":1}")
.node("test1").isEqualTo(2)
.node("test2").isEqualTo(2);
// compare node indexed from start of arrayassertThatJson("{\"root\":{\"test\":[1,2,3]}}")
.node("root.test[0]").isEqualTo(1);
// compare node indexed from end of arrayassertThatJson("{\"root\":{\"test\":[1,2,3]}}")
.node("root.test[-1]").isEqualTo(3);
// compares only the structureassertThatJson("{\"test\":1}")
// Options have to be specified before the assertion
.when(IGNORING_VALUES)
.isEqualTo("{\"test\":21}");
// ignores a valueassertThatJson("{\"test\":1}").isEqualTo("{\"test\":\"${json-unit.ignore}\"}");
// ignores extra fieldsassertThatJson("{\"test\":{\"a\":1, \"b\":2, \"c\":3}}")
// Options have to be specified before the assertion
.when(IGNORING_EXTRA_FIELDS)
.isEqualTo("{\"test\":{\"b\":2}}");
// array length comparisonassertThatJson("{\"test\":[1,2,3]}").node("test")
.isArray().ofLength(2);
// array contains nodeassertThatJson("{\"test\":[{\"id\":36},{\"id\":37}]}").node("test")
.isArray().thatContains("{\"id\":37}");
// using Hamcrest matcherassertThatJson("{\"test\":\"one\"}").node("test")
.matches(equalTo("one"));importstaticjava.math.BigDecimal.valueOf;
...
// Numbers sent to matchers are BigDecimals.assertThatJson("{\"test\":[{\"value\":1},{\"value\":2},{\"value\":3}]}")
.node("test")
.matches(everyItem(jsonPartMatches("value", lessThanOrEqualTo(valueOf(4)))));It is possible to combine fluent assertions with hamcrest matchers using matches method. For example
assertThatJson("{\"test\":[1,2,3]}").node("test").matches(hasItem(valueOf(1)));
assertThatJson("{\"test\":[{\"value\":1},{\"value\":2},{\"value\":3}]}")
.node("test")
.matches(everyItem(jsonPartMatches("value", lessThanOrEqualTo(valueOf(4)))));Since version 1.7.0 JsonUnit supports Spring MVC test assertions. For example
importstaticnet.javacrumbs.jsonunit.spring.JsonUnitResultMatchers.json;
...
this.mockMvc.perform(get("/sample").andExpect(
json().isEqualTo("{\"result\":{\"string\":\"stringValue\", \"array\":[1, 2, 3],\"decimal\":1.00001}}")
);
this.mockMvc.perform(get("/sample").andExpect(
json().node("result.string2").isAbsent()
);
this.mockMvc.perform(get("/sample").andExpect(
json().node("result.array").when(Option.IGNORING_ARRAY_ORDER).isEqualTo(newint[]{3, 2, 1})
);
this.mockMvc.perform(get("/sample").andExpect(
json().node("result.array").matches(everyItem(lessThanOrEqualTo(valueOf(4))))
);Sometimes you need to ignore certain values when comparing. It is possible to use ${json-unit.ignore} placeholder like this
assertJsonEquals("{\"test\":\"${json-unit.ignore}\"}",
"{\n\"test\": {\"object\" : {\"another\" : 1}}}");It is also possible to use regular expressions to compare string values
assertJsonEquals("{\"test\": \"${json-unit.regex}[A-Z]+\"}", "{\"test\": \"ABCD\"}");If you want to assert just a type, but you do not care about the exact value, you can use any-* placehloder like this
assertThatJson("{\"test\":\"value\"}")
.isEqualTo("{test:'${json-unit.any-string}'}");
assertThatJson("{\"test\":true}")
.isEqualTo("{\"test\":\"${json-unit.any-boolean}\"}");
assertThatJson("{\"test\":1.1}")
.isEqualTo("{\"test\":\"${json-unit.any-number}\"}");There are multiple options how you can configure the comparison
TREATING_NULL_AS_ABSENT - fields with null values are equivalent to absent fields. For example, this test passes
assertJsonEquals("{\"test\":{\"a\":1}}",
"{\"test\":{\"a\":1, \"b\": null, \"c\": null}}",
when(TREATING_NULL_AS_ABSENT));IGNORING_ARRAY_ORDER - ignores order in arrays
assertJsonEquals("{\"test\":[1,2,3]}", "{\"test\":[3,2,1]}",
when(IGNORING_ARRAY_ORDER));IGNORING_EXTRA_ARRAY_ITEMS - ignores unexpected array items
assertJsonEquals("{\"test\":[1,2,3]}",
"{\"test\":[1,2,3,4]}",
when(IGNORING_EXTRA_ARRAY_ITEMS));
assertJsonEquals("{\"test\":[1,2,3]}",
"{\"test\":[5,5,4,4,3,3,2,2,1,1]}",
when(IGNORING_EXTRA_ARRAY_ITEMS, IGNORING_ARRAY_ORDER));IGNORING_EXTRA_FIELDS - ignores extra fileds in the compared value
assertJsonEquals("{\"test\":{\"b\":2}}", "{\"test\":{\"a\":1, \"b\":2, \"c\":3}}",
when(IGNORING_EXTRA_FIELDS));IGNORE_VALUES - ignores values and compares only types
assertJsonEquals("{\"test\":{\"a\":1,\"b\":2,\"c\":3}}", "{\"test\":{\"a\":3,\"b\":2,\"c\":1}}",
when(IGNORING_VALUES));It is possible to combine options.
assertJsonEquals("{\"test\":[{\"key\":1},{\"key\":2},{\"key\":3}]}", "{\"test\":[{\"key\":3},{\"key\":2, \"extraField\":2},{\"key\":1}]}",
when(IGNORING_ARRAY_ORDER, IGNORING_EXTRA_FIELDS));In Hamcrest assertion you can set the option like this
assertThat("{\"test\":{\"a\":1, \"b\":2, \"c\":3}}",
jsonEquals("{\"test\":{\"b\":2}}").when(IGNORING_EXTRA_FIELDS));For standard asserts and Hamcrest matchers, it is possible to set the configuration globally
JsonAssert.setOptions(IGNORING_ARRAY_ORDER, IGNORING_EXTRA_FIELDS);In fluent assertion, you can set options in the following way
assertThatJson("{\"test\":{\"a\":1, \"b\":2, \"c\":3}}")
.when(IGNORING_EXTRA_FIELDS).isEqualTo("{\"test\":{\"b\":2}}");Please note that when method has to be called before the actual comparison.
Numbers are by default compared in the following way:
- If the type differs, the number is different. So 1 and 1.0 are different (int vs. float)
- Floating number comparison is exact
You can change this behavior by setting tolerance
assertJsonEquals("1", "\n1.009\n", withTolerance(0.01));or globally
JsonAssert.setTolerance(0.01);or for fluent assertions
assertThatJson("{\"test\":1.00001}").node("test").withTolerance(0.001).isEqualTo(1);Or you can use Hamcrest matcher
importstaticjava.math.BigDecimal.valueOf;
...
assertThatJson("{\"test\":1.10001}").node("test")
.matches(closeTo(valueOf(1.1), valueOf(0.001)));Although the differences are printed out by the assert statement, sometimes you use JsonUnit with other libraries like
Jadler that do not print the differences between documents. In such case, you can switch on the
logging. JsonUnit uses SLF4J. The only thing you need to do is to configure your logging
framework to log net.javacrumbs.jsonunit.difference on DEBUG level.
JsonUnit is trying to cleverly match which JSON library to use. In case you need to change the default behavior, you can use
json-unit.libraries system property. For example -Djson-unit.libraries=jackson2,gson or System.setProperty("json-unit.libraries", "jackson1");. Supported values are gson, json.org, jackson1, jackson2
JsonUnit is accessible in Maven central repository. In order for it to work, you need either, Jackson 1.x, Jackson 2.x, Gson or JSONObject on the classpath.
<dependency>
<groupId>net.javacrumbs.json-unit</groupId>
<artifactId>json-unit</artifactId>
<version>1.19.0</version>
<scope>test</scope>
</dependency>To use fluent assertions:
<dependency>
<groupId>net.javacrumbs.json-unit</groupId>
<artifactId>json-unit-fluent</artifactId>
<version>1.19.0</version>
<scope>test</scope>
</dependency>To use Spring MVC assertions:
<dependency>
<groupId>net.javacrumbs.json-unit</groupId>
<artifactId>json-unit-spring</artifactId>
<version>1.19.0</version>
<scope>test</scope>
</dependency>JsonUnit is licensed under Apache 2.0 licence.
- isArray().thatContains(...) fluent assert added
- Resource reading helper added
- System property to specify JSON libraries to be used
- Array pattern accepts non-word characters
- isAbsent and isPresent checks take TREAT_NULL_AS_ABSENT into account
- Dependency on slf4j made optional
- Preferring org.json library to process JSONArray
- Support for org.json library
- Fix: Element out of array bounds is treated as missing
- Support for any-* placeholders
- Single quote values in expected String allowed
- Lenient parsing of expected values
- Option setting methods made deprecated if called after assertion in JsonFluentAssert
- JsonFluentAssert constructors made private. Please file an issue if you need them.
- Added support for IGNORING_EXTRA_ARRAY_ITEMS
- Made compatible with Jackson 1.4
- OSGi support thanks to @amergey
- Support for Spring MVC tests assertions
- Gson nodes are not reconverted
- Added support for Hamcrest matchers
- Fixed handling of empty value in the expected parameter
- Support for dot in node name
- Added isObject method to fluent assertions
- Jackson 1 is preferred if the serialized class contains Jackson1 annotation
- Added support for regular expressions
- isStringEqualTo() added to fluent assertions
- isArray added to fluent assertions
- One runtime now supports Jackson 1.x, Jackson 2.x and Gson
- Internal JsonUnit class changed in backwards incompatible way
- Options renamed
- assertJsonNot* asserts added
- Support for online configuration in Hamcrest and standard asserts added
- Error messages changed a bit when comparing structures
- Refactoring of internal classes
- Support for ignoring array order
- Support for ignoring values
- Support for ignoring extra fields
- Treat null as absent added
- Absence/presence tests added
- Path to array in root fixed
- Numeric comparison tolerance added
- jsonStringEquals and jsonStringPartEquals added
- Generics in JsonMatchers fixed
- Simplified API
- Invalid JSONs in String comparison quoted
- Runtime incompatible (compile-time compatible) changes
- Switched to Jackson 2.x
- Fluent JsonAssert renamed to JsonFluentAssert
- Fluent assertions made framework independent.
- Switched from FEST to AssertJ
- Modules refactored
- Added support for FEST assert
- Logging categories changed
- Added logging
- Ignore placeholder "${json-unit.ignore}" added
- Text differences are closed in quotes
- Matchers added
- Made Java 5 compatible
- assertJsonPartStructureEquals added
- assertJsonPartEquals added
- Better error messages in case of different types
- Support for array types and other oddities in root
- Support for nulls
