From d2890b2e2d692ef97a02b44f59889bf862fba609 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sun, 22 Sep 2024 10:29:30 +0100 Subject: [PATCH] Update GrpcJavaClientTester.java --- .../integration2/GrpcJavaClientTester.java | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/interop-tests/src/main/java/io/grpc/testing/integration2/GrpcJavaClientTester.java b/interop-tests/src/main/java/io/grpc/testing/integration2/GrpcJavaClientTester.java index 6f53c044..e8358bbf 100644 --- a/interop-tests/src/main/java/io/grpc/testing/integration2/GrpcJavaClientTester.java +++ b/interop-tests/src/main/java/io/grpc/testing/integration2/GrpcJavaClientTester.java @@ -15,6 +15,7 @@ import io.grpc.ManagedChannelBuilder; import io.grpc.testing.integration.AbstractInteropTest; +import java.io.InputStream; /** Implementation of ClientTester that forwards all calls to the grpc-java AbstractInteropTest. */ public class GrpcJavaClientTester implements ClientTester { @@ -42,6 +43,9 @@ public void emptyUnary() throws Exception { tester.emptyUnary(); } + @Override + public void cacheableUnary() {} + @Override public void largeUnary() throws Exception { tester.largeUnary(); @@ -87,6 +91,24 @@ public void emptyStream() throws Exception { tester.emptyStream(); } + @Override + public void computeEngineCreds(String serviceAccount, String oauthScope) throws Exception {} + + @Override + public void serviceAccountCreds(String jsonKey, InputStream credentialsStream, String authScope) + throws Exception {} + + @Override + public void jwtTokenCreds(InputStream serviceAccountJson) throws Exception {} + + @Override + public void oauth2AuthToken(String jsonKey, InputStream credentialsStream, String authScope) + throws Exception {} + + @Override + public void perRpcCreds(String jsonKey, InputStream credentialsStream, String oauthScope) + throws Exception {} + @Override public void customMetadata() throws Exception { tester.customMetadata();