|
| 1 | +package io.grpc.binder; |
| 2 | + |
| 3 | +import static com.google.common.truth.Truth.assertThat; |
| 4 | +import static java.nio.charset.StandardCharsets.UTF_8; |
| 5 | + |
| 6 | +import com.google.common.collect.ImmutableList; |
| 7 | +import io.grpc.CallOptions; |
| 8 | +import io.grpc.Channel; |
| 9 | +import io.grpc.ClientInterceptors; |
| 10 | +import io.grpc.ManagedChannel; |
| 11 | +import io.grpc.Metadata; |
| 12 | +import io.grpc.MethodDescriptor; |
| 13 | +import io.grpc.ServerCallHandler; |
| 14 | +import io.grpc.ServerInterceptor; |
| 15 | +import io.grpc.ServerInterceptors; |
| 16 | +import io.grpc.ServerServiceDefinition; |
| 17 | +import io.grpc.inprocess.InProcessChannelBuilder; |
| 18 | +import io.grpc.inprocess.InProcessServerBuilder; |
| 19 | +import io.grpc.stub.ClientCalls; |
| 20 | +import io.grpc.stub.MetadataUtils; |
| 21 | +import io.grpc.stub.ServerCalls; |
| 22 | +import io.grpc.testing.GrpcCleanupRule; |
| 23 | +import java.io.ByteArrayInputStream; |
| 24 | +import java.io.IOException; |
| 25 | +import java.io.InputStream; |
| 26 | +import java.util.concurrent.atomic.AtomicReference; |
| 27 | +import org.junit.Rule; |
| 28 | +import org.junit.Test; |
| 29 | +import org.junit.runner.RunWith; |
| 30 | +import org.junit.runners.JUnit4; |
| 31 | + |
| 32 | +@RunWith(JUnit4.class) |
| 33 | +public final class PeerUidTestHelperTest { |
| 34 | + |
| 35 | + @Rule |
| 36 | + public final GrpcCleanupRule grpcCleanup = new GrpcCleanupRule(); |
| 37 | + |
| 38 | + private static final int FAKE_UID = 12345; |
| 39 | + |
| 40 | + private final AtomicReference<PeerUid> clientUidCapture = new AtomicReference<>(); |
| 41 | + |
| 42 | + @Test |
| 43 | + public void keyPopulatedWithInterceptorAndHeader() throws Exception { |
| 44 | + makeServiceCall(/* includeInterceptor= */ true, /* includeUidInHeader= */ true, FAKE_UID); |
| 45 | + assertThat(clientUidCapture.get()).isEqualTo(new PeerUid(FAKE_UID)); |
| 46 | + } |
| 47 | + |
| 48 | + @Test |
| 49 | + public void keyNotPopulatedWithInterceptorAndNoHeader() throws Exception { |
| 50 | + makeServiceCall(/* includeInterceptor= */ true, /* includeUidInHeader= */ false, /* uid= */ -1); |
| 51 | + assertThat(clientUidCapture.get()).isNull(); |
| 52 | + } |
| 53 | + |
| 54 | + @Test |
| 55 | + public void keyNotPopulatedWithoutInterceptorAndWithHeader() throws Exception { |
| 56 | + makeServiceCall( |
| 57 | + /* includeInterceptor= */ false, /* includeUidInHeader= */ true, /* uid= */ FAKE_UID); |
| 58 | + assertThat(clientUidCapture.get()).isNull(); |
| 59 | + } |
| 60 | + |
| 61 | + private final MethodDescriptor<String, String> method = |
| 62 | + MethodDescriptor.newBuilder(StringMarshaller.INSTANCE, StringMarshaller.INSTANCE) |
| 63 | + .setFullMethodName("test/method") |
| 64 | + .setType(MethodDescriptor.MethodType.UNARY) |
| 65 | + .build(); |
| 66 | + |
| 67 | + private void makeServiceCall(boolean includeInterceptor, boolean includeUidInHeader, int uid) |
| 68 | + throws Exception { |
| 69 | + ServerCallHandler<String, String> callHandler = |
| 70 | + ServerCalls.asyncUnaryCall( |
| 71 | + (req, respObserver) -> { |
| 72 | + clientUidCapture.set(PeerUids.REMOTE_PEER.get()); |
| 73 | + respObserver.onNext(req); |
| 74 | + respObserver.onCompleted(); |
| 75 | + }); |
| 76 | + ImmutableList<ServerInterceptor> interceptors; |
| 77 | + if (includeInterceptor) { |
| 78 | + interceptors = ImmutableList.of(PeerUidTestHelper.newTestPeerIdentifyingServerInterceptor()); |
| 79 | + } else { |
| 80 | + interceptors = ImmutableList.of(); |
| 81 | + } |
| 82 | + ServerServiceDefinition serviceDef = |
| 83 | + ServerInterceptors.intercept( |
| 84 | + ServerServiceDefinition.builder("test").addMethod(method, callHandler).build(), |
| 85 | + interceptors); |
| 86 | + |
| 87 | + InProcessServerBuilder server = |
| 88 | + InProcessServerBuilder.forName("test").directExecutor().addService(serviceDef); |
| 89 | + |
| 90 | + grpcCleanup.register(server.build().start()); |
| 91 | + |
| 92 | + Channel channel = InProcessChannelBuilder.forName("test").directExecutor().build(); |
| 93 | + grpcCleanup.register((ManagedChannel) channel); |
| 94 | + |
| 95 | + if (includeUidInHeader) { |
| 96 | + Metadata header = new Metadata(); |
| 97 | + header.put(PeerUidTestHelper.UID_KEY, uid); |
| 98 | + channel = |
| 99 | + ClientInterceptors.intercept(channel, MetadataUtils.newAttachHeadersInterceptor(header)); |
| 100 | + } |
| 101 | + |
| 102 | + ClientCalls.blockingUnaryCall(channel, method, CallOptions.DEFAULT, "hello"); |
| 103 | + } |
| 104 | + |
| 105 | + private static class StringMarshaller implements MethodDescriptor.Marshaller<String> { |
| 106 | + |
| 107 | + public static final StringMarshaller INSTANCE = new StringMarshaller(); |
| 108 | + |
| 109 | + @Override |
| 110 | + public InputStream stream(String value) { |
| 111 | + return new ByteArrayInputStream(value.getBytes(UTF_8)); |
| 112 | + } |
| 113 | + |
| 114 | + @Override |
| 115 | + public String parse(InputStream stream) { |
| 116 | + try { |
| 117 | + return new String(stream.readAllBytes(), UTF_8); |
| 118 | + } catch (IOException ex) { |
| 119 | + throw new RuntimeException(ex); |
| 120 | + } |
| 121 | + } |
| 122 | + } |
| 123 | +} |
0 commit comments