interop testing: add a gRPCLB fallback test client

This is a java analogue of the C++ test added in grpc/grpc#19623.

Proto changes were synced from grpc/grpc-proto

This client is suitable for testing fallback with any "grpclb" load-balanced service, but is particularly meant to implement a set of test cases described in an internal doc titled "DirectPath Cloud-to-Prod End-to-End Test Cases", section "gRPC DirectPath-to-CFE fallback".
This commit is contained in:
apolcyn 2020-05-05 14:22:25 -07:00 committed by GitHub
parent 8b914ee114
commit 79b00d266e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 306 additions and 0 deletions

View File

@ -114,6 +114,16 @@ task grpclb_long_lived_affinity_test_client(type: CreateStartScripts) {
]
}
task grpclb_fallback_test_client (type: CreateStartScripts) {
mainClassName = "io.grpc.testing.integration.GrpclbFallbackTestClient"
applicationName = "grpclb-fallback-test-client"
outputDir = new File(project.buildDir, 'tmp')
classpath = jar.outputs.files + configurations.runtime
defaultJvmOpts = [
"-Dio.grpc.internal.DnsNameResolverProvider.enable_service_config=true"
]
}
task xds_test_client(type: CreateStartScripts) {
mainClassName = "io.grpc.testing.integration.XdsTestClient"
applicationName = "xds-test-client"
@ -135,6 +145,7 @@ applicationDistribution.into("bin") {
from(stresstest_client)
from(http2_client)
from(grpclb_long_lived_affinity_test_client)
from(grpclb_fallback_test_client)
from(xds_test_client)
from(xds_test_server)
fileMode = 0755

View File

@ -0,0 +1,292 @@
/*
* Copyright 2019 The gRPC Authors
*
* 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.testing.integration;
import static com.google.common.base.Charsets.UTF_8;
import static org.junit.Assert.assertEquals;
import com.google.common.io.CharStreams;
import io.grpc.Deadline;
import io.grpc.ManagedChannel;
import io.grpc.StatusRuntimeException;
import io.grpc.alts.ComputeEngineChannelBuilder;
import io.grpc.testing.integration.Messages.GrpclbRouteType;
import io.grpc.testing.integration.Messages.SimpleRequest;
import io.grpc.testing.integration.Messages.SimpleResponse;
import java.io.InputStreamReader;
import java.util.concurrent.TimeUnit;
import java.util.logging.Logger;
/**
* Test client that verifies that grpclb failover into fallback mode works under
* different failure modes.
* This client is suitable for testing fallback with any "grpclb" load-balanced
* service, but is particularly meant to implement a set of test cases described
* in an internal doc titled "DirectPath Cloud-to-Prod End-to-End Test Cases",
* section "gRPC DirectPath-to-CFE fallback".
*/
public final class GrpclbFallbackTestClient {
private static final Logger logger =
Logger.getLogger(GrpclbFallbackTestClient.class.getName());
/**
* Entry point.
*/
public static void main(String[] args) throws Exception {
final GrpclbFallbackTestClient client = new GrpclbFallbackTestClient();
client.parseArgs(args);
Runtime.getRuntime().addShutdownHook(new Thread() {
@Override
@SuppressWarnings("CatchAndPrintStackTrace")
public void run() {
System.out.println("Shutting down");
try {
client.tearDown();
} catch (Exception e) {
e.printStackTrace();
}
}
});
try {
client.run();
} finally {
client.tearDown();
}
System.exit(0);
}
private String unrouteLbAndBackendAddrsCmd = "exit 1";
private String blackholeLbAndBackendAddrsCmd = "exit 1";
private String serverUri;
private String customCredentialsType;
private String testCase;
private ManagedChannel channel;
private TestServiceGrpc.TestServiceBlockingStub blockingStub;
private void parseArgs(String[] args) {
boolean usage = false;
for (String arg : args) {
if (!arg.startsWith("--")) {
System.err.println("All arguments must start with '--': " + arg);
usage = true;
break;
}
String[] parts = arg.substring(2).split("=", 2);
String key = parts[0];
if ("help".equals(key)) {
usage = true;
break;
}
if (parts.length != 2) {
System.err.println("All arguments must be of the form --arg=value");
usage = true;
break;
}
String value = parts[1];
if ("server_uri".equals(key)) {
serverUri = value;
} else if ("test_case".equals(key)) {
testCase = value;
} else if ("unroute_lb_and_backend_addrs_cmd".equals(key)) {
unrouteLbAndBackendAddrsCmd = value;
} else if ("blackhole_lb_and_backend_addrs_cmd".equals(key)) {
blackholeLbAndBackendAddrsCmd = value;
} else if ("custom_credentials_type".equals(key)) {
customCredentialsType = value;
} else {
System.err.println("Unknown argument: " + key);
usage = true;
break;
}
}
if (usage) {
GrpclbFallbackTestClient c = new GrpclbFallbackTestClient();
System.out.println(
"Usage: [ARGS...]"
+ "\n"
+ "\n --server_uri Server target. Default: "
+ c.serverUri
+ "\n --custom_credentials_type Name of Credentials to use. "
+ "Default: " + c.customCredentialsType
+ "\n --unroute_lb_and_backend_addrs_cmd Shell command used to make "
+ "LB and backend addresses unroutable. Default: "
+ c.unrouteLbAndBackendAddrsCmd
+ "\n --blackhole_lb_and_backend_addrs_cmd Shell command used to make "
+ "LB and backend addresses black holed. Default: "
+ c.blackholeLbAndBackendAddrsCmd
+ "\n --test_case=TEST_CASE Test case to run. Valid options are:"
+ "\n fast_fallback_before_startup : fallback before LB connection"
+ "\n fast_fallback_after_startup : fallback after startup due to "
+ "LB/backend addresses becoming unroutable"
+ "\n slow_fallback_before_startup : fallback before LB connection "
+ "due to LB/backend addresses being blackholed"
+ "\n slow_fallback_after_startup : fallback after startup due to "
+ "LB/backend addresses becoming blackholed"
+ "\n Default: " + c.testCase
);
System.exit(1);
}
}
private ManagedChannel createChannel() {
if (!customCredentialsType.equals("compute_engine_channel_creds")) {
throw new AssertionError(
"This test currently only supports "
+ "--custom_credentials_type=compute_engine_channel_creds. "
+ "TODO: add support for other types.");
}
ComputeEngineChannelBuilder builder = ComputeEngineChannelBuilder.forTarget(serverUri);
builder.keepAliveTime(3600, TimeUnit.SECONDS);
builder.keepAliveTimeout(20, TimeUnit.SECONDS);
return builder.build();
}
void initStub() {
channel = createChannel();
blockingStub = TestServiceGrpc.newBlockingStub(channel);
}
private void tearDown() {
try {
if (channel != null) {
channel.shutdownNow();
channel.awaitTermination(1, TimeUnit.SECONDS);
}
} catch (Exception ex) {
throw new RuntimeException(ex);
}
}
private void runShellCmd(String cmd) throws Exception {
logger.info("Run shell command: " + cmd);
ProcessBuilder pb = new ProcessBuilder("bash", "-c", cmd);
pb.redirectErrorStream(true);
Process process = pb.start();
logger.info("Shell command merged stdout and stderr: "
+ CharStreams.toString(
new InputStreamReader(process.getInputStream(), UTF_8)));
int exitCode = process.waitFor();
logger.info("Shell command exit code: " + exitCode);
assertEquals(0, exitCode);
}
private GrpclbRouteType doRpcAndGetPath(Deadline deadline) {
logger.info("doRpcAndGetPath deadline: " + deadline);
final SimpleRequest request = SimpleRequest.newBuilder()
.setFillGrpclbRouteType(true)
.build();
GrpclbRouteType result = GrpclbRouteType.GRPCLB_ROUTE_TYPE_UNKNOWN;
try {
SimpleResponse response = blockingStub
.withDeadline(deadline)
.unaryCall(request);
result = response.getGrpclbRouteType();
} catch (StatusRuntimeException ex) {
logger.warning("doRpcAndGetPath failed. Status: " + ex);
return GrpclbRouteType.GRPCLB_ROUTE_TYPE_UNKNOWN;
}
logger.info("doRpcAndGetPath. GrpclbRouteType result: " + result);
if (result != GrpclbRouteType.GRPCLB_ROUTE_TYPE_FALLBACK
&& result != GrpclbRouteType.GRPCLB_ROUTE_TYPE_BACKEND) {
throw new AssertionError("Received invalid LB route type. This suggests "
+ "that the server hasn't implemented this test correctly.");
}
return result;
}
private void waitForFallbackAndDoRpcs(Deadline fallbackDeadline) throws Exception {
int fallbackRetryCount = 0;
boolean fellBack = false;
while (!fallbackDeadline.isExpired()) {
GrpclbRouteType grpclbRouteType = doRpcAndGetPath(
Deadline.after(1, TimeUnit.SECONDS));
if (grpclbRouteType == GrpclbRouteType.GRPCLB_ROUTE_TYPE_BACKEND) {
throw new AssertionError("Got grpclb route type backend. Backends are "
+ "supposed to be unreachable, so this test is broken");
}
if (grpclbRouteType == GrpclbRouteType.GRPCLB_ROUTE_TYPE_FALLBACK) {
logger.info("Made one successful RPC to a fallback. Now expect the "
+ "same for the rest.");
fellBack = true;
break;
} else {
logger.info("Retryable RPC failure on iteration: " + fallbackRetryCount);
}
fallbackRetryCount++;
}
if (!fellBack) {
throw new AssertionError("Didn't fall back within deadline");
}
for (int i = 0; i < 30; i++) {
assertEquals(
GrpclbRouteType.GRPCLB_ROUTE_TYPE_FALLBACK,
doRpcAndGetPath(Deadline.after(20, TimeUnit.SECONDS)));
Thread.sleep(1000);
}
}
private void runFastFallbackBeforeStartup() throws Exception {
runShellCmd(unrouteLbAndBackendAddrsCmd);
final Deadline fallbackDeadline = Deadline.after(5, TimeUnit.SECONDS);
initStub();
waitForFallbackAndDoRpcs(fallbackDeadline);
}
private void runSlowFallbackBeforeStartup() throws Exception {
runShellCmd(blackholeLbAndBackendAddrsCmd);
final Deadline fallbackDeadline = Deadline.after(20, TimeUnit.SECONDS);
initStub();
waitForFallbackAndDoRpcs(fallbackDeadline);
}
private void runFastFallbackAfterStartup() throws Exception {
initStub();
assertEquals(
GrpclbRouteType.GRPCLB_ROUTE_TYPE_BACKEND,
doRpcAndGetPath(Deadline.after(20, TimeUnit.SECONDS)));
runShellCmd(unrouteLbAndBackendAddrsCmd);
final Deadline fallbackDeadline = Deadline.after(40, TimeUnit.SECONDS);
waitForFallbackAndDoRpcs(fallbackDeadline);
}
private void runSlowFallbackAfterStartup() throws Exception {
initStub();
assertEquals(
GrpclbRouteType.GRPCLB_ROUTE_TYPE_BACKEND,
doRpcAndGetPath(Deadline.after(20, TimeUnit.SECONDS)));
runShellCmd(blackholeLbAndBackendAddrsCmd);
final Deadline fallbackDeadline = Deadline.after(40, TimeUnit.SECONDS);
waitForFallbackAndDoRpcs(fallbackDeadline);
}
private void run() throws Exception {
logger.info("Begin test case: " + testCase);
if (testCase.equals("fast_fallback_before_startup")) {
runFastFallbackBeforeStartup();
} else if (testCase.equals("slow_fallback_before_startup")) {
runSlowFallbackBeforeStartup();
} else if (testCase.equals("fast_fallback_after_startup")) {
runFastFallbackAfterStartup();
} else if (testCase.equals("slow_fallback_after_startup")) {
runSlowFallbackAfterStartup();
} else {
throw new RuntimeException("invalid testcase: " + testCase);
}
logger.info("Test case: " + testCase + " done!");
}
}

View File

@ -86,6 +86,9 @@ message SimpleRequest {
// Whether SimpleResponse should include server_id.
bool fill_server_id = 9;
// Whether SimpleResponse should include grpclb_route_type.
bool fill_grpclb_route_type = 10;
}
// Unary response, as configured by the request.