接口 WebTestClient.BodyContentSpec

所有已知实现类:
DefaultWebTestClient.DefaultBodyContentSpec
封闭接口:
WebTestClient

public static interface WebTestClient.BodyContentSpec
Spec for expectations on the response body content.
  • 方法详细资料

    • isEmpty

      Assert the response body is empty and return the exchange result.
    • json

      default WebTestClient.BodyContentSpec json(String expectedJson)
      Parse the expected and actual response content as JSON and perform a comparison verifying that they contain the same attribute-value pairs regardless of formatting with lenient checking (extensible and non-strict array ordering).

      Use of this method requires the JSONassert library to be on the classpath.

      参数:
      expectedJson - the expected JSON content
      另请参阅:
    • json

      WebTestClient.BodyContentSpec json(String expectedJson, boolean strict)
      Parse the expected and actual response content as JSON and perform a comparison verifying that they contain the same attribute-value pairs regardless of formatting.

      Can compare in two modes, depending on the strict parameter value:

      • true: strict checking. Not extensible and strict array ordering.
      • false: lenient checking. Extensible and non-strict array ordering.

      Use of this method requires the JSONassert library to be on the classpath.

      参数:
      expectedJson - the expected JSON content
      strict - enables strict checking if true
      另请参阅:
    • xml

      Parse 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.

      参数:
      expectedXml - the expected JSON content.
      另请参阅:
    • jsonPath

      JsonPathAssertions jsonPath(String expression, Object... args)
      Access 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...).

      参数:
      expression - the JsonPath expression
      args - arguments to parameterize the expression
    • xpath

      default XpathAssertions xpath(String expression, Object... args)
      Access 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...).

      参数:
      expression - the XPath expression
      args - arguments to parameterize the expression
      另请参阅:
    • xpath

      XpathAssertions xpath(String expression, @Nullable Map<String,String> namespaces, Object... args)
      Access 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...).

      参数:
      expression - the XPath expression
      namespaces - the namespaces to use
      args - arguments to parameterize the expression
    • consumeWith

      Assert the response body content with the given Consumer.
      参数:
      consumer - the consumer for the response body; the input byte[] may be null if there was no response body.
    • returnResult

      EntityExchangeResult<byte[]> returnResult()
      Exit the chained API and return an ExchangeResult with the raw response content.