Add filter to add exchange to Reactor Context

Closes gh-21746
This commit is contained in:
Rossen Stoyanchev
2019-04-16 10:06:53 -04:00
parent c99d904665
commit ed650891ca
2 changed files with 135 additions and 0 deletions

View File

@@ -0,0 +1,71 @@
/*
* Copyright 2002-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.web.filter.reactive;
import java.time.Duration;
import java.util.concurrent.atomic.AtomicReference;
import org.junit.Test;
import reactor.core.publisher.Mono;
import org.springframework.http.server.reactive.HttpHandler;
import org.springframework.mock.http.server.reactive.test.MockServerHttpRequest;
import org.springframework.mock.http.server.reactive.test.MockServerHttpResponse;
import org.springframework.web.server.ServerWebExchange;
import org.springframework.web.server.adapter.WebHttpHandlerBuilder;
import static org.junit.Assert.*;
/**
* Unit tests for {@link ServerWebExchangeContextFilter}.
* @author Rossen Stoyanchev
*/
public class ServerWebExchangeContextFilterTests {
@Test
public void extractServerWebExchangeFromContext() {
MyService service = new MyService();
HttpHandler httpHandler = WebHttpHandlerBuilder
.webHandler(exchange -> service.service().then())
.filter(new ServerWebExchangeContextFilter())
.build();
httpHandler.handle(MockServerHttpRequest.get("/path").build(), new MockServerHttpResponse())
.block(Duration.ofSeconds(5));
assertNotNull(service.getExchange());
}
private static class MyService {
private final AtomicReference<ServerWebExchange> exchangeRef = new AtomicReference<>();
public ServerWebExchange getExchange() {
return this.exchangeRef.get();
}
public Mono<String> service() {
return Mono.just("result").subscriberContext(context -> {
ServerWebExchangeContextFilter.get(context).ifPresent(exchangeRef::set);
return context;
});
}
}
}