Class HttpHandlerConnector
java.lang.Object
org.springframework.test.web.reactive.server.HttpHandlerConnector
- All Implemented Interfaces:
ClientHttpConnector
Connector that handles requests by invoking an
HttpHandler rather
than making actual requests to a network socket.
Internally the connector uses and adapts
MockClientHttpRequest and MockClientHttpResponse to
MockServerHttpRequest and MockServerHttpResponse.
- Since:
- 5.0
- Author:
- Rossen Stoyanchev, Sam Brannen
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classIndicates that an error occurred after the server response was completed, viaReactiveHttpOutputMessage.writeWith(Publisher)orReactiveHttpOutputMessage.setComplete(), and can no longer be changed. -
Constructor Summary
ConstructorsConstructorDescriptionHttpHandlerConnector(HttpHandler handler) Construct anHttpHandlerConnectorwith the suppliedHttpHandlerto handle requests with.HttpHandlerConnector(HttpHandler handler, @Nullable SslInfo sslInfo) Construct anHttpHandlerConnectorwith the suppliedSslInfoandHttpHandlerto handle requests with. -
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<ClientHttpResponse> connect(HttpMethod httpMethod, URI uri, Function<? super ClientHttpRequest, reactor.core.publisher.Mono<Void>> requestCallback) Connect to the origin server using the givenHttpMethodandURIand apply the givenrequestCallbackwhen the HTTP request of the underlying API can be initialized and written to.
-
Constructor Details
-
HttpHandlerConnector
Construct anHttpHandlerConnectorwith the suppliedHttpHandlerto handle requests with. -
HttpHandlerConnector
Construct anHttpHandlerConnectorwith the suppliedSslInfoandHttpHandlerto handle requests with.- Since:
- 7.0
-
-
Method Details
-
connect
public reactor.core.publisher.Mono<ClientHttpResponse> connect(HttpMethod httpMethod, URI uri, Function<? super ClientHttpRequest, reactor.core.publisher.Mono<Void>> requestCallback) Description copied from interface:ClientHttpConnectorConnect to the origin server using the givenHttpMethodandURIand apply the givenrequestCallbackwhen the HTTP request of the underlying API can be initialized and written to.- Specified by:
connectin interfaceClientHttpConnector- Parameters:
httpMethod- the HTTP request methoduri- the HTTP request URIrequestCallback- a function that prepares and writes to the request, returning a publisher that signals when it's done writing. Implementations can return aMono<Void>by callingReactiveHttpOutputMessage.writeWith(Publisher)orReactiveHttpOutputMessage.setComplete().- Returns:
- publisher for the
ClientHttpResponse
-