aboutsummaryrefslogtreecommitdiff
path: root/netty
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2016-12-02 14:46:31 -0800
committerEric Anderson <ejona@google.com>2017-12-08 14:02:35 -0800
commit83d710b6d7468374c1ac2c72891cb6823bf4e031 (patch)
tree11aef235d5114a4938ac0f18b6fb626a0d0441cc /netty
parentb6f556c088a12fe5d6b449c19e1ccf5b0b04fced (diff)
downloadgrpc-grpc-java-83d710b6d7468374c1ac2c72891cb6823bf4e031.tar.gz
Shade Netty transport, with tcnative
The entire transport is shaded because we wouldn't want to collide with the unshaded form of grpc-netty.
Diffstat (limited to 'netty')
-rw-r--r--netty/shaded/build.gradle66
-rw-r--r--netty/shaded/src/testShadow/java/io/grpc/netty/shaded/ShadingTest.java112
2 files changed, 178 insertions, 0 deletions
diff --git a/netty/shaded/build.gradle b/netty/shaded/build.gradle
new file mode 100644
index 000000000..cf67cead2
--- /dev/null
+++ b/netty/shaded/build.gradle
@@ -0,0 +1,66 @@
+buildscript {
+ repositories {
+ jcenter()
+ }
+ dependencies {
+ classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
+ }
+}
+
+apply plugin: 'com.github.johnrengelman.shadow'
+
+description = "gRPC: Netty Shaded"
+
+sourceSets {
+ testShadow {}
+}
+
+dependencies {
+ compile project(':grpc-netty')
+ runtime libraries.netty_tcnative
+ testShadowCompile files(shadowJar),
+ configurations.shadow,
+ project(':grpc-testing-proto'),
+ project(':grpc-testing'),
+ libraries.truth
+ shadow project(':grpc-core')
+}
+
+artifacts {
+ // We want uploadArchives to handle the shadowJar; we don't care about
+ // uploadShadow
+ archives shadowJar
+}
+
+shadowJar {
+ classifier = null
+ dependencies {
+ include(project(':grpc-netty'))
+ include(dependency('io.netty:'))
+ }
+ relocate 'io.grpc.netty', 'io.grpc.netty.shaded.io.grpc.netty'
+ relocate 'io.netty', 'io.grpc.netty.shaded.io.netty'
+ // We have to be careful with these replacements as they must not match any
+ // string in NativeLibraryLoader, else they cause corruption. Note that
+ // this includes concatenation of string literals and constants.
+ relocate 'META-INF/native/libnetty', 'META-INF/native/libio_grpc_netty_shaded_netty'
+ relocate 'META-INF/native/netty', 'META-INF/native/io_grpc_netty_shaded_netty'
+ mergeServiceFiles()
+}
+
+// This is a hack to have shadow plugin modify the uploadArchives POM's
+// dependencies. If we delete the uploadShadow task, then the plugin will no
+// longer modify the POM. This probably can break horribly with parallel build,
+// but that's broken anyway with install/uploadArchives
+uploadShadow.repositories.addAll(uploadArchives.repositories)
+// And then we use a further hack to share that POM with install
+install.repositories.mavenInstaller.pom = uploadArchives.repositories.mavenDeployer.pom
+
+task testShadow(type: Test) {
+ testClassesDirs = sourceSets.testShadow.output.classesDirs
+ classpath = sourceSets.testShadow.runtimeClasspath
+}
+compileTestShadowJava.options.compilerArgs = compileTestJava.options.compilerArgs
+compileTestShadowJava.options.encoding = compileTestJava.options.encoding
+
+test.dependsOn testShadow
diff --git a/netty/shaded/src/testShadow/java/io/grpc/netty/shaded/ShadingTest.java b/netty/shaded/src/testShadow/java/io/grpc/netty/shaded/ShadingTest.java
new file mode 100644
index 000000000..10b84fd35
--- /dev/null
+++ b/netty/shaded/src/testShadow/java/io/grpc/netty/shaded/ShadingTest.java
@@ -0,0 +1,112 @@
+/*
+ * Copyright 2017, gRPC Authors 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 io.grpc.netty.shaded;
+
+import static com.google.common.truth.Truth.assertThat;
+
+import io.grpc.ManagedChannel;
+import io.grpc.ManagedChannelBuilder;
+import io.grpc.Server;
+import io.grpc.ServerBuilder;
+import io.grpc.internal.testing.TestUtils;
+import io.grpc.netty.shaded.io.grpc.netty.GrpcSslContexts;
+import io.grpc.netty.shaded.io.grpc.netty.NettyChannelBuilder;
+import io.grpc.netty.shaded.io.grpc.netty.NettyServerBuilder;
+import io.grpc.netty.shaded.io.netty.handler.ssl.SslContextBuilder;
+import io.grpc.netty.shaded.io.netty.handler.ssl.SslProvider;
+import io.grpc.stub.StreamObserver;
+import io.grpc.testing.protobuf.SimpleRequest;
+import io.grpc.testing.protobuf.SimpleResponse;
+import io.grpc.testing.protobuf.SimpleServiceGrpc;
+import io.grpc.testing.protobuf.SimpleServiceGrpc.SimpleServiceBlockingStub;
+import io.grpc.testing.protobuf.SimpleServiceGrpc.SimpleServiceImplBase;
+import java.util.concurrent.TimeUnit;
+import org.junit.After;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+/** Unit tests for {@link Shading}. */
+@RunWith(JUnit4.class)
+public final class ShadingTest {
+ private ManagedChannel channel;
+ private Server server;
+
+ @After
+ public void tearDown() throws Exception {
+ if (channel != null) {
+ channel.shutdownNow();
+ channel.awaitTermination(1, TimeUnit.SECONDS);
+ }
+ if (server != null) {
+ server.shutdownNow();
+ server.awaitTermination(1, TimeUnit.SECONDS);
+ }
+ }
+
+ /** Verify that normal Netty didn't leak into the test runtime. */
+ @Test(expected = ClassNotFoundException.class)
+ public void noNormalNetty() throws Exception {
+ Class.forName("io.grpc.netty.NettyServerBuilder");
+ }
+
+ @Test
+ public void serviceLoaderFindsNetty() throws Exception {
+ assertThat(ServerBuilder.forPort(0)).isInstanceOf(NettyServerBuilder.class);
+ assertThat(ManagedChannelBuilder.forAddress("localhost", 1234))
+ .isInstanceOf(NettyChannelBuilder.class);
+ }
+
+ @Test
+ public void basic() throws Exception {
+ server = ServerBuilder.forPort(0)
+ .addService(new SimpleServiceImpl())
+ .build().start();
+ channel = ManagedChannelBuilder
+ .forAddress("localhost", server.getPort())
+ .usePlaintext(true)
+ .build();
+ SimpleServiceBlockingStub stub = SimpleServiceGrpc.newBlockingStub(channel);
+ assertThat(SimpleResponse.getDefaultInstance())
+ .isEqualTo(stub.unaryRpc(SimpleRequest.getDefaultInstance()));
+ }
+
+ @Test
+ public void tcnative() throws Exception {
+ server = NettyServerBuilder.forPort(0)
+ .useTransportSecurity(TestUtils.loadCert("server1.pem"), TestUtils.loadCert("server1.key"))
+ .addService(new SimpleServiceImpl())
+ .build().start();
+ channel = NettyChannelBuilder
+ .forAddress("localhost", server.getPort())
+ .sslContext(
+ GrpcSslContexts.configure(SslContextBuilder.forClient(), SslProvider.OPENSSL)
+ .trustManager(TestUtils.loadCert("ca.pem")).build())
+ .overrideAuthority("foo.test.google.fr")
+ .build();
+ SimpleServiceBlockingStub stub = SimpleServiceGrpc.newBlockingStub(channel);
+ assertThat(SimpleResponse.getDefaultInstance())
+ .isEqualTo(stub.unaryRpc(SimpleRequest.getDefaultInstance()));
+ }
+
+ private static class SimpleServiceImpl extends SimpleServiceImplBase {
+ @Override public void unaryRpc(SimpleRequest req, StreamObserver<SimpleResponse> obs) {
+ obs.onNext(SimpleResponse.getDefaultInstance());
+ obs.onCompleted();
+ }
+ }
+}