| Constructor and Description | 
|---|
| JsonPathExpectationsHelper(String expression,
                          Object... args)Construct a new  JsonPathExpectationsHelper. | 
| Modifier and Type | Method and Description | 
|---|---|
| <T> void | assertValue(String content,
           Matcher<? super T> matcher)Evaluate the JSON path expression against the supplied  contentand assert the resulting value with the givenMatcher. | 
| <T> void | assertValue(String content,
           Matcher<? super T> matcher,
           Class<T> targetType)An overloaded variant of  assertValue(String, Matcher)that also
 accepts a target type for the resulting value. | 
| void | assertValue(String content,
           Object expectedValue)Evaluate the JSON path expression against the supplied  contentand assert that the result is equal to the expected value. | 
| void | assertValueIsArray(String content)Evaluate the JSON path expression against the supplied  contentand assert that the resulting value is an array. | 
| void | assertValueIsBoolean(String content)Evaluate the JSON path expression against the supplied  contentand assert that the resulting value is aBoolean. | 
| void | assertValueIsEmpty(String content)Evaluate the JSON path expression against the supplied  contentand assert that an empty value exists at the given path. | 
| void | assertValueIsMap(String content)Evaluate the JSON path expression against the supplied  contentand assert that the resulting value is aMap. | 
| void | assertValueIsNotEmpty(String content)Evaluate the JSON path expression against the supplied  contentand assert that a non-empty value exists at the given path. | 
| void | assertValueIsNumber(String content)Evaluate the JSON path expression against the supplied  contentand assert that the resulting value is aNumber. | 
| void | assertValueIsString(String content)Evaluate the JSON path expression against the supplied  contentand assert that the resulting value is aString. | 
| void | doesNotExist(String content)Evaluate the JSON path expression against the supplied  contentand assert that a non-null value does not exist at the given path. | 
| void | doesNotHaveJsonPath(String content)Evaluate the JSON path expression against the supplied  contentand assert that a value, includingnullvalues, does not exist
 at the given path. | 
| Object | evaluateJsonPath(String content)Evaluate the JSON path and return the resulting value. | 
| Object | evaluateJsonPath(String content,
                Class<?> targetType)Variant of  evaluateJsonPath(String)with a target type. | 
| void | exists(String content)Evaluate the JSON path expression against the supplied  contentand assert that a non-null value, possibly an empty array or map, exists
 at the given path. | 
| void | hasJsonPath(String content)Evaluate the JSON path expression against the supplied  contentand assert that a value, possiblynull, exists. | 
public JsonPathExpectationsHelper(String expression, Object... args)
JsonPathExpectationsHelper.expression - the JsonPath expression; never null or emptyargs - arguments to parameterize the JsonPath expression with,
 using formatting specifiers defined in String.format(String, Object...)public <T> void assertValue(String content, Matcher<? super T> matcher)
content
 and assert the resulting value with the given Matcher.content - the JSON contentmatcher - the matcher with which to assert the resultpublic <T> void assertValue(String content, Matcher<? super T> matcher, Class<T> targetType)
assertValue(String, Matcher) that also
 accepts a target type for the resulting value. This can be useful for
 matching numbers reliably for example coercing an integer into a double.content - the JSON contentmatcher - the matcher with which to assert the resulttargetType - the expected type of the resulting valuepublic void assertValue(String content, @Nullable Object expectedValue)
content
 and assert that the result is equal to the expected value.content - the JSON contentexpectedValue - the expected valuepublic void assertValueIsString(String content)
content
 and assert that the resulting value is a String.content - the JSON contentpublic void assertValueIsBoolean(String content)
content
 and assert that the resulting value is a Boolean.content - the JSON contentpublic void assertValueIsNumber(String content)
content
 and assert that the resulting value is a Number.content - the JSON contentpublic void assertValueIsArray(String content)
content
 and assert that the resulting value is an array.content - the JSON contentpublic void assertValueIsMap(String content)
content
 and assert that the resulting value is a Map.content - the JSON contentpublic void exists(String content)
content
 and assert that a non-null value, possibly an empty array or map, exists
 at the given path.
 Note that if the JSON path expression is not definite, this method asserts that the list of values at the given path is not empty.
content - the JSON contentpublic void doesNotExist(String content)
content
 and assert that a non-null value does not exist at the given path.
 Note that if the JSON path expression is not definite, this method asserts that the list of values at the given path is empty.
content - the JSON contentpublic void assertValueIsEmpty(String content)
content
 and assert that an empty value exists at the given path.
 For the semantics of empty, consult the Javadoc for
 ObjectUtils.isEmpty(Object).
content - the JSON contentpublic void assertValueIsNotEmpty(String content)
content
 and assert that a non-empty value exists at the given path.
 For the semantics of empty, consult the Javadoc for
 ObjectUtils.isEmpty(Object).
content - the JSON contentpublic void hasJsonPath(String content)
content
 and assert that a value, possibly null, exists.
 If the JSON path expression is not definite, this method asserts that the list of values at the given path is not empty.
content - the JSON contentpublic void doesNotHaveJsonPath(String content)
content
 and assert that a value, including null values, does not exist
 at the given path.
 If the JSON path expression is not definite, this method asserts that the list of values at the given path is empty.
content - the JSON content@Nullable public Object evaluateJsonPath(String content)
content - the content to evaluate againstAssertionError - if the evaluation failspublic Object evaluateJsonPath(String content, Class<?> targetType)
evaluateJsonPath(String) with a target type.
 This can be useful for matching numbers reliably for example coercing an integer into a double.
content - the content to evaluate againstAssertionError - if the evaluation fails