public class ContentResultMatchers
extends java.lang.Object
MockMvcResultMatchers.content().| Modifier | Constructor and Description |
|---|---|
protected |
ContentResultMatchers()
Protected constructor.
|
| Modifier and Type | Method and Description |
|---|---|
ResultMatcher |
bytes(byte[] expectedContent)
Assert the response body content as a byte array.
|
ResultMatcher |
contentType(MediaType contentType)
Assert the ServletResponse content type after parsing it as a MediaType.
|
ResultMatcher |
contentType(java.lang.String contentType)
Assert the ServletResponse content type.
|
ResultMatcher |
encoding(java.lang.String characterEncoding)
Assert the character encoding in the ServletResponse.
|
ResultMatcher |
node(org.hamcrest.Matcher<? super org.w3c.dom.Node> matcher)
Parse the response content as
Node and apply the given Hamcrest
Matcher. |
ResultMatcher |
source(org.hamcrest.Matcher<? super javax.xml.transform.Source> matcher)
Parse the response content as
DOMSource and apply the given
Hamcrest Matcher. |
ResultMatcher |
string(org.hamcrest.Matcher<? super java.lang.String> matcher)
Assert the response body content with a Hamcrest
Matcher. |
ResultMatcher |
string(java.lang.String expectedContent)
Assert the response body content as a String.
|
ResultMatcher |
xml(java.lang.String xmlContent)
Parse the response content and the given string as XML and assert the two
are "similar" - i.e.
|
protected ContentResultMatchers()
MockMvcResultMatchers.content().public ResultMatcher contentType(java.lang.String contentType)
public ResultMatcher contentType(MediaType contentType)
public ResultMatcher encoding(java.lang.String characterEncoding)
ServletResponse.getCharacterEncoding()public ResultMatcher string(org.hamcrest.Matcher<? super java.lang.String> matcher)
Matcher.
mockMvc.perform(get("/path"))
.andExpect(content(containsString("text")));
public ResultMatcher string(java.lang.String expectedContent)
public ResultMatcher bytes(byte[] expectedContent)
public ResultMatcher xml(java.lang.String xmlContent)
Use of this matcher requires the XMLUnit library.
xmlContent - the expected XML contentMockMvcResultMatchers.xpath(String, Object...),
MockMvcResultMatchers.xpath(String, Map, Object...)public ResultMatcher node(org.hamcrest.Matcher<? super org.w3c.dom.Node> matcher)
Node and apply the given Hamcrest
Matcher.org.hamcrest.Matchers#hasXPathpublic ResultMatcher source(org.hamcrest.Matcher<? super javax.xml.transform.Source> matcher)
DOMSource and apply the given
Hamcrest Matcher.