Browse Source

Merge branch '5.1.x'

pull/22572/head
Rossen Stoyanchev 6 years ago
parent
commit
256f8549d0
  1. 14
      src/docs/asciidoc/testing.adoc
  2. 4
      src/docs/asciidoc/web/websocket.adoc

14
src/docs/asciidoc/testing.adoc

@ -4943,6 +4943,20 @@ instances, as the following example shows:
Registered filters are invoked through the `MockFilterChain` from `spring-test`, and the Registered filters are invoked through the `MockFilterChain` from `spring-test`, and the
last filter delegates to the `DispatcherServlet`. last filter delegates to the `DispatcherServlet`.
[[spring-mvc-test-vs-streaming-response]]
===== Streaming Responses
There are no options built into Spring MVC Test for container-less testing of streaming
responses. Applications that make use of
<<web.adoc#mvc-ann-async-http-streaming,Spring MVC streaming>> options can use the
<<testing.adoc#webtestclient-stream,WebTestClient>> to perform end-to-end, integration
tests against a running server. This is also supported in Spring Boot where you can
https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#boot-features-testing-spring-boot-applications-testing-with-running-server[test a running server]
with `WebTestClient`. One extra advantage is the ability to use the `StepVerifier` from
project Reactor that allows declaring expectations on a stream of data.
[[spring-mvc-test-vs-end-to-end-integration-tests]] [[spring-mvc-test-vs-end-to-end-integration-tests]]
===== Differences Between Out-of-Container and End-to-End Integration Tests ===== Differences Between Out-of-Container and End-to-End Integration Tests

4
src/docs/asciidoc/web/websocket.adoc

@ -662,8 +662,8 @@ The following example shows how to do so in Java configuration:
[subs="verbatim,quotes"] [subs="verbatim,quotes"]
---- ----
@Configuration @Configuration
@EnableWebSocket @EnableWebSocketMessageBroker
public class WebSocketConfig implements WebSocketConfigurer { public class WebSocketConfig implements WebSocketMessageBrokerConfigurer {
@Override @Override
public void registerStompEndpoints(StompEndpointRegistry registry) { public void registerStompEndpoints(StompEndpointRegistry registry) {

Loading…
Cancel
Save