Class JsonPathRequestMatchers
An instance of this class is typically accessed via
MockRestRequestMatchers.jsonPath(String, Matcher)
or
MockRestRequestMatchers.jsonPath(String, Object...)
.
- Since:
- 3.2
- Author:
- Rossen Stoyanchev, Sam Brannen
-
Constructor Summary
ModifierConstructorDescriptionprotected
JsonPathRequestMatchers
(String expression, Object... args) Protected constructor. -
Method Summary
Modifier and TypeMethodDescriptionEvaluate the JSON path expression against the request content and assert that a value does not exist at the given path.Evaluate the JSON path expression against the suppliedcontent
and assert that a value, includingnull
values, does not exist at the given path.exists()
Evaluate the JSON path expression against the request content and assert that a non-null value exists at the given path.Evaluate the JSON path expression against the response content and assert that a value, possiblynull
, exists.isArray()
Evaluate the JSON path expression against the request content and assert that the result is an array.Evaluate the JSON path expression against the request content and assert that the result is aBoolean
.isEmpty()
Evaluate the JSON path expression against the request content and assert that an empty value exists at the given path.isMap()
Evaluate the JSON path expression against the request content and assert that the result is aMap
.Evaluate the JSON path expression against the request content and assert that a non-empty value exists at the given path.isNumber()
Evaluate the JSON path expression against the request content and assert that the result is aNumber
.isString()
Evaluate the JSON path expression against the request content and assert that the result is aString
.Evaluate the JSON path expression against the request content and assert that the result is equal to the supplied value.<T> RequestMatcher
Evaluate the JSON path expression against the request content and assert the resulting value with the given HamcrestMatcher
.<T> RequestMatcher
An overloaded variant ofvalue(Matcher)
that also accepts a target type for the resulting value that the matcher can work reliably against.
-
Constructor Details
-
JsonPathRequestMatchers
Protected constructor.Use
MockRestRequestMatchers.jsonPath(String, Matcher)
orMockRestRequestMatchers.jsonPath(String, Object...)
.- Parameters:
expression
- theJsonPath
expression; nevernull
or emptyargs
- arguments to parameterize theJsonPath
expression with, using formatting specifiers defined inString.format(String, Object...)
-
-
Method Details
-
value
Evaluate the JSON path expression against the request content and assert the resulting value with the given HamcrestMatcher
. -
value
An overloaded variant ofvalue(Matcher)
that also accepts a target type for the resulting value that the matcher can work reliably against.This can be useful for matching numbers reliably — for example, to coerce an integer into a double.
- Since:
- 4.3.3
-
value
Evaluate the JSON path expression against the request content and assert that the result is equal to the supplied value. -
exists
Evaluate the JSON path expression against the request content and assert that a non-null value exists at the given path.If the JSON path expression is not definite, this method asserts that the value at the given path is not empty.
-
doesNotExist
Evaluate the JSON path expression against the request content and assert that a value does not exist at the given path.If the JSON path expression is not definite, this method asserts that the value at the given path is empty.
-
hasJsonPath
Evaluate the JSON path expression against the response content and assert that a value, possiblynull
, exists.If the JSON path expression is not definite, this method asserts that the list of values at the given path is not empty.
- Since:
- 5.0.3
- See Also:
-
doesNotHaveJsonPath
Evaluate the JSON path expression against the suppliedcontent
and assert that a value, includingnull
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.
- Since:
- 5.0.3
- See Also:
-
isEmpty
Evaluate the JSON path expression against the request content and assert that an empty value exists at the given path.For the semantics of empty, consult the Javadoc for
ObjectUtils.isEmpty(Object)
.- Since:
- 4.2.1
- See Also:
-
isNotEmpty
Evaluate the JSON path expression against the request 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)
.- Since:
- 4.2.1
- See Also:
-
isString
Evaluate the JSON path expression against the request content and assert that the result is aString
.- Since:
- 4.2.1
-
isBoolean
Evaluate the JSON path expression against the request content and assert that the result is aBoolean
.- Since:
- 4.2.1
-
isNumber
Evaluate the JSON path expression against the request content and assert that the result is aNumber
.- Since:
- 4.2.1
-
isArray
Evaluate the JSON path expression against the request content and assert that the result is an array. -
isMap
Evaluate the JSON path expression against the request content and assert that the result is aMap
.- Since:
- 4.2.1
-