Created
September 8, 2017 21:57
-
-
Save smaldini/4064edc8eeb4cb32651968b120209943 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2011-2017 Pivotal Software Inc, All Rights Reserved. | |
* | |
* 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 | |
* | |
* http://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 reactor.ipc.netty.http.client; | |
import java.net.URI; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.HashSet; | |
import java.util.List; | |
import java.util.Random; | |
import java.util.Set; | |
import java.util.concurrent.ThreadLocalRandom; | |
import io.netty.buffer.ByteBuf; | |
import io.netty.channel.ChannelOption; | |
import io.netty.handler.codec.http.DefaultHttpHeaders; | |
import io.netty.handler.codec.http.HttpHeaders; | |
import io.netty.handler.codec.http.HttpResponseStatus; | |
import org.junit.Test; | |
import reactor.core.publisher.Flux; | |
import reactor.core.publisher.Mono; | |
import reactor.ipc.netty.http.server.HttpServer; | |
import reactor.ipc.netty.http.server.HttpServerRequest; | |
import reactor.ipc.netty.http.server.HttpServerResponse; | |
import static io.netty.handler.codec.http.HttpResponseStatus.OK; | |
import static java.util.Collections.addAll; | |
import static java.util.Locale.ENGLISH; | |
public class ProxyClientIssue { | |
private static final Set<String> headersRemovedOnRequest = | |
new HashSet<>(Arrays.asList("proxy-connection", | |
"connection", | |
"keep-alive", | |
"transfer-encoding", | |
"te", | |
"trailer", | |
"proxy-authorization", | |
"proxy-authenticate", | |
"upgrade")); | |
private static final Set<String> headersRemovedOnResponse = | |
new HashSet<>(headersRemovedOnRequest); | |
static { | |
addAll(headersRemovedOnResponse, "date", "server"); | |
} | |
; | |
private static int PROXY_PORT = 1082; | |
private static int CONTENT_SERVER_PORT = 2379; | |
@Test | |
public void startContentServer() throws Exception { | |
Random random = new Random(0); | |
byte[] content = new byte[1024 * 10]; | |
random.nextBytes(content); | |
HttpServer server = HttpServer.create(options -> options.host("0.0.0.0") | |
.port(CONTENT_SERVER_PORT) | |
.option(ChannelOption.SO_LINGER, | |
-1)); | |
server.startRouterAndAwait(routes -> routes.get("/**", | |
(req, res) -> res.header("Content-length", String.valueOf(content.length)) | |
.header("Content-type", "application/octet-stream") | |
// .header("Connection", "Close") | |
.sendByteArray(Flux.just(content)))); | |
} | |
@Test | |
public void startEmulatingClients() throws Exception { | |
int concurrencyLevel = 10; | |
int requestCount = 100; | |
List<Mono<Void>> parallelFlows = new ArrayList<>(); | |
for (int i = 0; i < concurrencyLevel; i++) { | |
Mono<Void> currentRequestFlow = Mono.empty(); | |
for (int j = 0; j < requestCount; j++) { | |
currentRequestFlow = currentRequestFlow.then(HttpClient.create() | |
.get("http://localhost:" + PROXY_PORT + "/0/content/" + ThreadLocalRandom.current() | |
.nextInt( | |
1000)) | |
.flatMapMany( | |
clientResponse -> { | |
HttpResponseStatus | |
statusCode = | |
clientResponse.status(); | |
if (statusCode != OK) { | |
System.out.println( | |
"Unsuccessful status code: " + statusCode); | |
} | |
else { | |
System.out.println( | |
"."); | |
} | |
return clientResponse.receive(); | |
}) | |
.then()); | |
} | |
parallelFlows.add(currentRequestFlow); | |
} | |
Flux.merge(parallelFlows) | |
.blockLast(); | |
} | |
@Test | |
public void startProxyServer() throws Exception { | |
HttpServer server = HttpServer.create(options -> options.host("0.0.0.0") | |
.port(PROXY_PORT)); | |
server.startRouterAndAwait(routes -> routes.get("/0/**", this::proxy)); | |
} | |
private Mono<Void> proxy(HttpServerRequest request, HttpServerResponse response) { | |
return HttpClient.create() | |
.get(URI.create("http://localhost:" + CONTENT_SERVER_PORT + | |
"/" + request.path()) | |
.toString(), | |
req -> req.headers(filterRequestHeaders(request.requestHeaders()))) | |
.flatMap(targetResponse -> response.headers(filterResponseHeaders(targetResponse.responseHeaders())) | |
.send(targetResponse.receive().retain()) | |
.then()); | |
} | |
private HttpHeaders filterRequestHeaders(HttpHeaders httpHeaders) { | |
return filterHeaders(httpHeaders, headersRemovedOnRequest); | |
} | |
private HttpHeaders filterResponseHeaders(HttpHeaders headers) { | |
return filterHeaders(headers, headersRemovedOnResponse); | |
} | |
private HttpHeaders filterHeaders(HttpHeaders headers, Set<String> removedHeaders) { | |
return headers.entries() | |
.stream() | |
.filter(entry -> !removedHeaders.contains(entry.getKey() | |
.toLowerCase(ENGLISH))) | |
.collect(DefaultHttpHeaders::new, | |
(h, e) -> h.set(e.getKey(), e.getValue()), | |
HttpHeaders::set); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment