use of com.linkedin.r2.transport.http.client.common.ChannelPoolManagerFactoryImpl in project rest.li by linkedin.
the class TestHttpsEarlyHandshake method testHttpsEarlyHandshakeHttp1.
@Test
public void testHttpsEarlyHandshakeHttp1() throws Exception {
EventLoopGroup eventLoopGroup = new NioEventLoopGroup();
ScheduledExecutorService scheduler = Executors.newSingleThreadScheduledExecutor();
ChannelPoolManagerFactoryImpl channelPoolManagerFactory = new ChannelPoolManagerFactoryImpl(eventLoopGroup, scheduler, SSL_SESSION_RESUMPTION_ENABLED, _clientProvider.getUsePipelineV2(), HttpClientFactory.DEFAULT_CHANNELPOOL_WAITER_TIMEOUT, HttpClientFactory.DEFAULT_CONNECT_TIMEOUT, HttpClientFactory.DEFAULT_SSL_HANDSHAKE_TIMEOUT);
SSLContext context = SslContextUtil.getContext();
ChannelPoolManagerKey key = new ChannelPoolManagerKeyBuilder().setMinPoolSize(1).setSSLContext(context).setSSLParameters(context.getDefaultSSLParameters()).build();
ChannelPoolManager channelPoolManager = channelPoolManagerFactory.buildRest(key);
InetAddress inetAddress = InetAddress.getByName("localhost");
final SocketAddress address = new InetSocketAddress(inetAddress, _port);
// get the channel, when it is returned it might not be active yet
FutureCallback<Channel> futureCallback = new FutureCallback<>();
AsyncPool<Channel> poolForAddress = channelPoolManager.getPoolForAddress(address);
poolForAddress.get(futureCallback);
final Channel channel = futureCallback.get(5, TimeUnit.SECONDS);
// wait until it gets active
FutureCallback<Future<? super Void>> futureActiveCallback = new FutureCallback<>();
channel.newSucceededFuture().addListener(futureActiveCallback::onSuccess);
futureActiveCallback.get(5, TimeUnit.SECONDS);
// retrieve the ssl handler from the pipeline and wait till the handshake happens
SslHandler sslHandler = (SslHandler) channel.pipeline().get(SslHandlerUtil.PIPELINE_SSL_HANDLER);
FutureCallback<Future<? super Channel>> futureHandshakeCallback = new FutureCallback<>();
sslHandler.handshakeFuture().addListener(f -> {
if (f.isSuccess()) {
futureHandshakeCallback.onSuccess(f);
} else {
futureHandshakeCallback.onError(f.cause());
}
});
futureHandshakeCallback.get(5, TimeUnit.SECONDS).get(5, TimeUnit.SECONDS);
poolForAddress.dispose(channel);
// shutdown the pool
FutureCallback<None> futureShutdownCallback = new FutureCallback<>();
channelPoolManager.shutdown(futureShutdownCallback, () -> {
}, () -> {
}, 5000);
futureShutdownCallback.get(5, TimeUnit.SECONDS);
// shutdown the client executors
scheduler.shutdown();
eventLoopGroup.shutdownGracefully();
}
use of com.linkedin.r2.transport.http.client.common.ChannelPoolManagerFactoryImpl in project rest.li by linkedin.
the class TestEarlyUpgrade method testEarlyUpgrade.
/**
* The aim is having the pool upgrading the http1 connection to http2 even before a request comes in
*/
@Test
public void testEarlyUpgrade() throws Exception {
ChannelPoolManagerFactoryImpl channelPoolManagerFactory = new ChannelPoolManagerFactoryImpl(_eventLoopGroup, _scheduler, SSL_SESSION_RESUMPTION_ENABLED, _newPipelineEnabled, HttpClientFactory.DEFAULT_CHANNELPOOL_WAITER_TIMEOUT, HttpClientFactory.DEFAULT_CONNECT_TIMEOUT, HttpClientFactory.DEFAULT_SSL_HANDSHAKE_TIMEOUT);
ChannelPoolManagerKey key = new ChannelPoolManagerKeyBuilder().setMinPoolSize(1).build();
ChannelPoolManager channelPoolManager = channelPoolManagerFactory.buildHttp2Stream(key);
HttpServerBuilder.HttpServerStatsProvider httpServerStatsProvider = new HttpServerBuilder.HttpServerStatsProvider();
Server server = new HttpServerBuilder().serverStatsProvider(httpServerStatsProvider).build();
try {
server.start();
InetAddress inetAddress = InetAddress.getByName("localhost");
final SocketAddress address = new InetSocketAddress(inetAddress, HttpServerBuilder.HTTP_PORT);
// since min pool size is 1, it automatically creates a channel
channelPoolManager.getPoolForAddress(address);
// We need the assertWithTimeout because, even if we get the channel,
// it doesn't mean it connected to the server yet
AssertionMethods.assertWithTimeout(2000, // it is expected 1 connection to be opened and 1 option request
() -> Assert.assertEquals(httpServerStatsProvider.clientConnections().size(), 1));
Assert.assertEquals(httpServerStatsProvider.requestCount(), 1);
} finally {
server.stop();
}
FutureCallback<None> futureCallback = new FutureCallback<>();
channelPoolManager.shutdown(futureCallback, () -> {
}, () -> {
}, 5);
futureCallback.get(5, TimeUnit.SECONDS);
}
Aggregations