forked from grpc/grpc-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReconnectTestClient.java
More file actions
119 lines (110 loc) · 4.16 KB
/
Copy pathReconnectTestClient.java
File metadata and controls
119 lines (110 loc) · 4.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
* Copyright 2015 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 org.junit.Assert.assertTrue;
import io.grpc.ManagedChannel;
import io.grpc.StatusRuntimeException;
import io.grpc.netty.NegotiationType;
import io.grpc.netty.NettyChannelBuilder;
import io.grpc.okhttp.OkHttpChannelBuilder;
import io.grpc.testing.integration.EmptyProtos.Empty;
import io.grpc.testing.integration.Messages.ReconnectInfo;
import io.grpc.testing.integration.Messages.ReconnectParams;
/**
* Verifies the client is reconnecting the server with correct backoffs
*
* <p>See the <a href="https://github.com/grpc/grpc/blob/master/doc/connection-backoff-interop-test-description.md">Test Spec</a>.
*/
public class ReconnectTestClient {
private static final int TEST_TIME_MS = 540 * 1000;
private int serverControlPort = 8080;
private int serverRetryPort = 8081;
private boolean useOkhttp = false;
private ManagedChannel controlChannel;
private ManagedChannel retryChannel;
private ReconnectServiceGrpc.ReconnectServiceBlockingStub controlStub;
private ReconnectServiceGrpc.ReconnectServiceBlockingStub retryStub;
private void parseArgs(String[] args) {
for (String arg : args) {
if (!arg.startsWith("--")) {
System.err.println("All arguments must start with '--': " + arg);
System.exit(1);
}
String[] parts = arg.substring(2).split("=", 2);
String key = parts[0];
String value = parts[1];
if ("server_control_port".equals(key)) {
serverControlPort = Integer.parseInt(value);
} else if ("server_retry_port".equals(key)) {
serverRetryPort = Integer.parseInt(value);
} else if ("use_okhttp".equals(key)) {
useOkhttp = Boolean.parseBoolean(value);
} else {
System.err.println("Unknown argument: " + key);
System.exit(1);
}
}
}
private void runTest() throws Exception {
try {
controlChannel = NettyChannelBuilder.forAddress("127.0.0.1", serverControlPort)
.negotiationType(NegotiationType.PLAINTEXT).build();
controlStub = ReconnectServiceGrpc.newBlockingStub(controlChannel);
if (useOkhttp) {
retryChannel =
OkHttpChannelBuilder.forAddress("127.0.0.1", serverRetryPort)
.useTransportSecurity()
.build();
} else {
retryChannel = NettyChannelBuilder.forAddress("127.0.0.1", serverRetryPort)
.negotiationType(NegotiationType.TLS).build();
}
retryStub = ReconnectServiceGrpc.newBlockingStub(retryChannel);
controlStub.start(ReconnectParams.getDefaultInstance());
long startTimeStamp = System.currentTimeMillis();
while ((System.currentTimeMillis() - startTimeStamp) < TEST_TIME_MS) {
try {
retryStub.start(ReconnectParams.getDefaultInstance());
} catch (StatusRuntimeException expected) {
// Make CheckStyle happy.
}
Thread.sleep(50);
}
ReconnectInfo info = controlStub.stop(Empty.getDefaultInstance());
assertTrue(info.getPassed());
} finally {
controlChannel.shutdownNow();
retryChannel.shutdownNow();
}
}
/**
* The main application allowing this client to be launched from the command line.
*/
public static void main(String[] args) {
ReconnectTestClient client = new ReconnectTestClient();
client.parseArgs(args);
System.out.println("Starting test:");
try {
client.runTest();
System.out.println("Finished successfully");
System.exit(0);
} catch (Throwable e) {
e.printStackTrace();
System.err.println("Test failed!");
System.exit(1);
}
}
}