Package org.sonar.test
Class JsonAssert
- java.lang.Object
-
- org.sonar.test.JsonAssert
-
public class JsonAssert extends java.lang.ObjectAssertion to compare JSON documents. Comparison is not strict:- formatting differences are ignored
- order of elements in objects
{}is not verified - objects can contain more elements than expected, for example
{"one":1, "two":2}matches{"one":1} - order of elements in arrays
[]is not verified by default, for example[1, 2]matches[2, 1]. This mode can be disabled withwithStrictArrayOrder() - timezones in datetime values are not strictly verified, for example
{"foo": "2015-01-01T13:00:00+2000"}matches{"foo": "2015-01-01T10:00:00-1000"}. This feature can be disabled withwithStrictTimezone()
Usage
String actual = "{}"; String expected = "{}"; JsonAssert.assertJson(actual).isSimilarTo(expected);Expected JSON document can be loaded from URLs:
String actual = "{}"; JsonAssert.assertJson(actual).isSimilarTo(getClass().getResource("MyTest/expected.json"));- Since:
- 5.2
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JsonAssertassertJson(java.lang.String actualJson)static JsonAssertassertJson(java.net.URL actualJson)JsonAssertignoreFields(java.lang.String... ignoredFields)JsonAssertisNotSimilarTo(java.lang.String expected)JsonAssertisNotSimilarTo(java.net.URL expected)JsonAssertisSimilarTo(java.lang.String expected)JsonAssertisSimilarTo(java.net.URL expected)JsonAssertwithStrictArrayOrder()JsonAssertwithStrictTimezone()
-
-
-
Method Detail
-
withStrictTimezone
public JsonAssert withStrictTimezone()
-
withStrictArrayOrder
public JsonAssert withStrictArrayOrder()
-
ignoreFields
public JsonAssert ignoreFields(java.lang.String... ignoredFields)
-
isSimilarTo
public JsonAssert isSimilarTo(java.lang.String expected)
-
isSimilarTo
public JsonAssert isSimilarTo(java.net.URL expected)
-
isNotSimilarTo
public JsonAssert isNotSimilarTo(java.lang.String expected)
-
isNotSimilarTo
public JsonAssert isNotSimilarTo(java.net.URL expected)
-
assertJson
public static JsonAssert assertJson(java.lang.String actualJson)
-
assertJson
public static JsonAssert assertJson(java.net.URL actualJson)
-
-