public class CookieResultMatchers extends Object
An instance of this class is typically accessed via
MockMvcResultMatchers.cookie()
.
Modifier | Constructor and Description |
---|---|
protected |
CookieResultMatchers()
Protected constructor.
|
Modifier and Type | Method and Description |
---|---|
ResultMatcher |
comment(String name,
Matcher<? super String> matcher)
Assert a cookie's comment with a Hamcrest
Matcher . |
ResultMatcher |
comment(String name,
String comment)
Assert a cookie's comment.
|
ResultMatcher |
doesNotExist(String name)
Assert a cookie does not exist.
|
ResultMatcher |
domain(String name,
Matcher<? super String> matcher)
Assert a cookie's domain with a Hamcrest
Matcher . |
ResultMatcher |
domain(String name,
String domain)
Assert a cookie's domain.
|
ResultMatcher |
exists(String name)
Assert a cookie exists.
|
ResultMatcher |
httpOnly(String name,
boolean httpOnly)
Assert whether the cookie must be HTTP only.
|
ResultMatcher |
maxAge(String name,
int maxAge)
Assert a cookie's maxAge.
|
ResultMatcher |
maxAge(String name,
Matcher<? super Integer> matcher)
Assert a cookie's maxAge with a Hamcrest
Matcher . |
ResultMatcher |
path(String name,
Matcher<? super String> matcher)
Assert a cookie's path with a Hamcrest
Matcher . |
ResultMatcher |
path(String name,
String path)
Assert a cookie's path.
|
ResultMatcher |
secure(String name,
boolean secure)
Assert whether the cookie must be sent over a secure protocol or not.
|
ResultMatcher |
value(String name,
Matcher<? super String> matcher)
Assert a cookie value with the given Hamcrest
Matcher . |
ResultMatcher |
value(String name,
String expectedValue)
Assert a cookie value.
|
ResultMatcher |
version(String name,
int version)
Assert a cookie's version.
|
ResultMatcher |
version(String name,
Matcher<? super Integer> matcher)
Assert a cookie's version with a Hamcrest
Matcher . |
protected CookieResultMatchers()
MockMvcResultMatchers.cookie()
.public ResultMatcher value(String name, Matcher<? super String> matcher)
Matcher
.public ResultMatcher value(String name, String expectedValue)
public ResultMatcher exists(String name)
public ResultMatcher doesNotExist(String name)
public ResultMatcher maxAge(String name, Matcher<? super Integer> matcher)
Matcher
.public ResultMatcher maxAge(String name, int maxAge)
public ResultMatcher path(String name, Matcher<? super String> matcher)
Matcher
.public ResultMatcher path(String name, String path)
public ResultMatcher domain(String name, Matcher<? super String> matcher)
Matcher
.public ResultMatcher domain(String name, String domain)
public ResultMatcher comment(String name, Matcher<? super String> matcher)
Matcher
.public ResultMatcher comment(String name, String comment)
public ResultMatcher version(String name, Matcher<? super Integer> matcher)
Matcher
.public ResultMatcher version(String name, int version)
public ResultMatcher secure(String name, boolean secure)
public ResultMatcher httpOnly(String name, boolean httpOnly)