类 JsonPathRequestMatchers
An instance of this class is typically accessed via
MockRestRequestMatchers.jsonPath(String, Matcher) or
MockRestRequestMatchers.jsonPath(String, Object...).
- 从以下版本开始:
- 4.0
- 作者:
- Rossen Stoyanchev, Sam Brannen
-
嵌套类概要
嵌套类 -
字段概要
字段 -
构造器概要
构造器限定符构造器说明protectedJsonPathRequestMatchers(String expression, Object... args) Protected constructor. -
方法概要
修饰符和类型方法说明Evaluate 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 suppliedcontentand assert that a value, includingnullvalues, 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> RequestMatchervalue(org.hamcrest.Matcher<? super T> matcher) Evaluate the JSON path expression against the request content and assert the resulting value with the given HamcrestMatcher.<T> RequestMatcherAn overloaded variant ofvalue(Matcher)that also accepts a target type for the resulting value that the matcher can work reliably against.
-
字段详细资料
-
jsonPathHelper
-
-
构造器详细资料
-
JsonPathRequestMatchers
Protected constructor.Use
MockRestRequestMatchers.jsonPath(String, Matcher)orMockRestRequestMatchers.jsonPath(String, Object...).- 参数:
expression- theJsonPathexpression; nevernullor emptyargs- arguments to parameterize theJsonPathexpression with, using formatting specifiers defined inString.format(String, Object...)
-
-
方法详细资料
-
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.
- 从以下版本开始:
- 4.0
-
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.
- 从以下版本开始:
- 4.0
- 另请参阅:
-
doesNotHaveJsonPath
Evaluate the JSON path expression against the suppliedcontentand assert that a value, includingnullvalues, 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.
- 从以下版本开始:
- 4.0
- 另请参阅:
-
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).- 从以下版本开始:
- 4.0
- 另请参阅:
-
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).- 从以下版本开始:
- 4.0
- 另请参阅:
-
isString
Evaluate the JSON path expression against the request content and assert that the result is aString.- 从以下版本开始:
- 4.0
-
isBoolean
Evaluate the JSON path expression against the request content and assert that the result is aBoolean.- 从以下版本开始:
- 4.0
-
isNumber
Evaluate the JSON path expression against the request content and assert that the result is aNumber.- 从以下版本开始:
- 4.0
-
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.- 从以下版本开始:
- 4.0
-