Interface WebTestClient.BodyContentSpec
- Enclosing interface:
- WebTestClient
public static interface WebTestClient.BodyContentSpec
Spec for expectations on the response body content.
- 
Method SummaryModifier and TypeMethodDescriptionconsumeWith(Consumer<EntityExchangeResult<byte[]>> consumer) Assert the response body content with the givenConsumer.isEmpty()Assert the response body is empty and return the exchange result.Parse the expected and actual response content as JSON and perform a "lenient" comparison verifying the same attribute-value pairs.Access to response body assertions using a JsonPath expression to inspect a specific subset of the body.EntityExchangeResult<byte[]>Exit the chained API and return anExchangeResultwith the raw response content.Parse expected and actual response content as XML and assert that the two are "similar", i.e.default XpathAssertionsAccess to response body assertions using an XPath expression to inspect a specific subset of the body.Access to response body assertions with specific namespaces using an XPath expression to inspect a specific subset of the body.
- 
Method Details- 
isEmptyEntityExchangeResult<Void> isEmpty()Assert the response body is empty and return the exchange result.
- 
jsonParse the expected and actual response content as JSON and perform a "lenient" comparison verifying the same attribute-value pairs.Use of this option requires the JSONassert library on to be on the classpath. - Parameters:
- expectedJson- the expected JSON content.
 
- 
xmlParse expected and actual response content as XML and assert that the two are "similar", i.e. they contain the same elements and attributes regardless of order.Use of this method requires the XMLUnit library on the classpath. - Parameters:
- expectedXml- the expected JSON content.
- Since:
- 5.1
- See Also:
 
- 
jsonPathAccess to response body assertions using a JsonPath expression to inspect a specific subset of the body.The JSON path expression can be a parameterized string using formatting specifiers as defined in String.format(java.lang.String, java.lang.Object...).- Parameters:
- expression- the JsonPath expression
- args- arguments to parameterize the expression
 
- 
xpathAccess to response body assertions using an XPath expression to inspect a specific subset of the body.The XPath expression can be a parameterized string using formatting specifiers as defined in String.format(java.lang.String, java.lang.Object...).- Parameters:
- expression- the XPath expression
- args- arguments to parameterize the expression
- Since:
- 5.1
- See Also:
 
- 
xpathAccess to response body assertions with specific namespaces using an XPath expression to inspect a specific subset of the body.The XPath expression can be a parameterized string using formatting specifiers as defined in String.format(java.lang.String, java.lang.Object...).- Parameters:
- expression- the XPath expression
- namespaces- the namespaces to use
- args- arguments to parameterize the expression
- Since:
- 5.1
 
- 
consumeWithAssert the response body content with the givenConsumer.- Parameters:
- consumer- the consumer for the response body; the input- byte[]may be- nullif there was no response body.
 
- 
returnResultEntityExchangeResult<byte[]> returnResult()Exit the chained API and return anExchangeResultwith the raw response content.
 
-