blob: 59227d98ab25d2249f740759127344df8b88666e [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
34#include "test/core/end2end/end2end_tests.h"
35
36#include <stdio.h>
37#include <string.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080038
39#include <grpc/byte_buffer.h>
40#include <grpc/support/alloc.h>
41#include <grpc/support/log.h>
42#include <grpc/support/time.h>
43#include <grpc/support/useful.h>
44#include "test/core/end2end/cq_verifier.h"
45
46enum { TIMEOUT = 200000 };
47
48static void *tag(gpr_intptr t) { return (void *)t; }
49
50static grpc_end2end_test_fixture begin_test(grpc_end2end_test_config config,
51 const char *test_name,
52 grpc_channel_args *client_args,
53 grpc_channel_args *server_args) {
54 grpc_end2end_test_fixture f;
55 gpr_log(GPR_INFO, "%s/%s", test_name, config.name);
56 f = config.create_fixture(client_args, server_args);
57 config.init_client(&f, client_args);
58 config.init_server(&f, server_args);
59 return f;
60}
61
62static gpr_timespec n_seconds_time(int n) {
Craig Tiller8ad8a412015-02-25 08:36:40 -080063 return GRPC_TIMEOUT_SECONDS_TO_DEADLINE(n);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080064}
65
Craig Tiller32946d32015-01-15 11:37:30 -080066static gpr_timespec five_seconds_time(void) { return n_seconds_time(5); }
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080067
68static void drain_cq(grpc_completion_queue *cq) {
Craig Tiller64be9f72015-05-04 14:53:51 -070069 grpc_event ev;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080070 do {
71 ev = grpc_completion_queue_next(cq, five_seconds_time());
Craig Tiller64be9f72015-05-04 14:53:51 -070072 } while (ev.type != GRPC_QUEUE_SHUTDOWN);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080073}
74
75static void shutdown_server(grpc_end2end_test_fixture *f) {
76 if (!f->server) return;
77 grpc_server_shutdown(f->server);
78 grpc_server_destroy(f->server);
79 f->server = NULL;
80}
81
82static void shutdown_client(grpc_end2end_test_fixture *f) {
83 if (!f->client) return;
84 grpc_channel_destroy(f->client);
85 f->client = NULL;
86}
87
88static void end_test(grpc_end2end_test_fixture *f) {
89 shutdown_server(f);
90 shutdown_client(f);
91
92 grpc_completion_queue_shutdown(f->server_cq);
93 drain_cq(f->server_cq);
94 grpc_completion_queue_destroy(f->server_cq);
95 grpc_completion_queue_shutdown(f->client_cq);
96 drain_cq(f->client_cq);
97 grpc_completion_queue_destroy(f->client_cq);
98}
99
100static void simple_request_body(grpc_end2end_test_fixture f) {
101 grpc_call *c;
102 grpc_call *s;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800103 gpr_timespec deadline = five_seconds_time();
104 cq_verifier *v_client = cq_verifier_create(f.client_cq);
105 cq_verifier *v_server = cq_verifier_create(f.server_cq);
Craig Tiller8b1d9892015-04-28 14:28:19 -0700106 grpc_op ops[6];
107 grpc_op *op;
108 grpc_metadata_array initial_metadata_recv;
109 grpc_metadata_array trailing_metadata_recv;
110 grpc_metadata_array request_metadata_recv;
111 grpc_call_details call_details;
112 grpc_status_code status;
113 char *details = NULL;
114 size_t details_capacity = 0;
115 int was_cancelled = 2;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800116
Craig Tiller8b1d9892015-04-28 14:28:19 -0700117 c = grpc_channel_create_call(f.client, f.client_cq, "/foo",
118 "foo.test.google.fr:1234", deadline);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800119 GPR_ASSERT(c);
120
Craig Tiller8b1d9892015-04-28 14:28:19 -0700121 grpc_metadata_array_init(&initial_metadata_recv);
122 grpc_metadata_array_init(&trailing_metadata_recv);
123 grpc_metadata_array_init(&request_metadata_recv);
124 grpc_call_details_init(&call_details);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800125
Craig Tiller8b1d9892015-04-28 14:28:19 -0700126 op = ops;
127 op->op = GRPC_OP_SEND_INITIAL_METADATA;
128 op->data.send_initial_metadata.count = 0;
129 op++;
130 op->op = GRPC_OP_SEND_CLOSE_FROM_CLIENT;
131 op++;
132 op->op = GRPC_OP_RECV_INITIAL_METADATA;
133 op->data.recv_initial_metadata = &initial_metadata_recv;
134 op++;
135 op->op = GRPC_OP_RECV_STATUS_ON_CLIENT;
136 op->data.recv_status_on_client.trailing_metadata = &trailing_metadata_recv;
137 op->data.recv_status_on_client.status = &status;
138 op->data.recv_status_on_client.status_details = &details;
139 op->data.recv_status_on_client.status_details_capacity = &details_capacity;
140 op++;
141 GPR_ASSERT(GRPC_CALL_OK == grpc_call_start_batch(c, ops, op - ops, tag(1)));
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800142
Craig Tillerf9e6adf2015-05-06 11:45:59 -0700143 GPR_ASSERT(GRPC_CALL_OK ==
144 grpc_server_request_call(f.server, &s, &call_details,
145 &request_metadata_recv, f.server_cq,
146 f.server_cq, tag(101)));
Craig Tiller64be9f72015-05-04 14:53:51 -0700147 cq_expect_completion(v_server, tag(101), 1);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800148 cq_verify(v_server);
149
Craig Tiller8b1d9892015-04-28 14:28:19 -0700150 op = ops;
151 op->op = GRPC_OP_SEND_INITIAL_METADATA;
152 op->data.send_initial_metadata.count = 0;
153 op++;
154 op->op = GRPC_OP_SEND_STATUS_FROM_SERVER;
155 op->data.send_status_from_server.trailing_metadata_count = 0;
156 op->data.send_status_from_server.status = GRPC_STATUS_UNIMPLEMENTED;
157 op->data.send_status_from_server.status_details = "xyz";
158 op++;
159 op->op = GRPC_OP_RECV_CLOSE_ON_SERVER;
160 op->data.recv_close_on_server.cancelled = &was_cancelled;
161 op++;
162 GPR_ASSERT(GRPC_CALL_OK == grpc_call_start_batch(s, ops, op - ops, tag(102)));
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800163
Craig Tiller64be9f72015-05-04 14:53:51 -0700164 cq_expect_completion(v_server, tag(102), 1);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800165 cq_verify(v_server);
166
Craig Tiller64be9f72015-05-04 14:53:51 -0700167 cq_expect_completion(v_client, tag(1), 1);
Craig Tiller8b1d9892015-04-28 14:28:19 -0700168 cq_verify(v_client);
169
170 GPR_ASSERT(status == GRPC_STATUS_UNIMPLEMENTED);
171 GPR_ASSERT(0 == strcmp(details, "xyz"));
172 GPR_ASSERT(0 == strcmp(call_details.method, "/foo"));
173 GPR_ASSERT(0 == strcmp(call_details.host, "foo.test.google.fr:1234"));
174 GPR_ASSERT(was_cancelled == 0);
175
176 gpr_free(details);
177 grpc_metadata_array_destroy(&initial_metadata_recv);
178 grpc_metadata_array_destroy(&trailing_metadata_recv);
179 grpc_metadata_array_destroy(&request_metadata_recv);
180 grpc_call_details_destroy(&call_details);
181
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800182 grpc_call_destroy(c);
183 grpc_call_destroy(s);
184
185 cq_verifier_destroy(v_client);
186 cq_verifier_destroy(v_server);
187}
188
189static void test_max_concurrent_streams(grpc_end2end_test_config config) {
190 grpc_end2end_test_fixture f;
191 grpc_arg server_arg;
192 grpc_channel_args server_args;
193 grpc_call *c1;
194 grpc_call *c2;
195 grpc_call *s1;
196 grpc_call *s2;
ctiller58393c22015-01-07 14:03:30 -0800197 int live_call;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800198 gpr_timespec deadline;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800199 cq_verifier *v_client;
200 cq_verifier *v_server;
Craig Tiller64be9f72015-05-04 14:53:51 -0700201 grpc_event ev;
Craig Tiller3b05a122015-04-28 15:14:40 -0700202 grpc_call_details call_details;
203 grpc_metadata_array request_metadata_recv;
204 grpc_metadata_array initial_metadata_recv1;
205 grpc_metadata_array trailing_metadata_recv1;
206 grpc_metadata_array initial_metadata_recv2;
207 grpc_metadata_array trailing_metadata_recv2;
208 grpc_status_code status1;
209 char *details1 = NULL;
210 size_t details_capacity1 = 0;
211 grpc_status_code status2;
212 char *details2 = NULL;
213 size_t details_capacity2 = 0;
Craig Tillerfe2b8352015-04-28 15:46:50 -0700214 grpc_op ops[6];
215 grpc_op *op;
216 int was_cancelled;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800217
218 server_arg.key = GRPC_ARG_MAX_CONCURRENT_STREAMS;
219 server_arg.type = GRPC_ARG_INTEGER;
220 server_arg.value.integer = 1;
221
222 server_args.num_args = 1;
223 server_args.args = &server_arg;
224
225 f = begin_test(config, __FUNCTION__, NULL, &server_args);
226 v_client = cq_verifier_create(f.client_cq);
227 v_server = cq_verifier_create(f.server_cq);
228
Craig Tiller3b05a122015-04-28 15:14:40 -0700229 grpc_metadata_array_init(&request_metadata_recv);
Craig Tillerf1071202015-04-30 13:29:48 -0700230 grpc_metadata_array_init(&initial_metadata_recv1);
231 grpc_metadata_array_init(&trailing_metadata_recv1);
232 grpc_metadata_array_init(&initial_metadata_recv2);
233 grpc_metadata_array_init(&trailing_metadata_recv2);
234 grpc_call_details_init(&call_details);
Craig Tiller3b05a122015-04-28 15:14:40 -0700235
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800236 /* perform a ping-pong to ensure that settings have had a chance to round
237 trip */
238 simple_request_body(f);
239 /* perform another one to make sure that the one stream case still works */
240 simple_request_body(f);
241
242 /* start two requests - ensuring that the second is not accepted until
243 the first completes */
Craig Tillerf1071202015-04-30 13:29:48 -0700244 deadline = n_seconds_time(10);
Craig Tiller3b05a122015-04-28 15:14:40 -0700245 c1 = grpc_channel_create_call(f.client, f.client_cq, "/alpha",
Craig Tiller9f3675f2015-04-29 13:56:33 -0700246 "foo.test.google.fr:1234", deadline);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800247 GPR_ASSERT(c1);
Craig Tiller3b05a122015-04-28 15:14:40 -0700248 c2 = grpc_channel_create_call(f.client, f.client_cq, "/beta",
Craig Tiller9f3675f2015-04-29 13:56:33 -0700249 "foo.test.google.fr:1234", deadline);
Craig Tiller3b05a122015-04-28 15:14:40 -0700250 GPR_ASSERT(c2);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800251
Craig Tillerf9e6adf2015-05-06 11:45:59 -0700252 GPR_ASSERT(GRPC_CALL_OK ==
253 grpc_server_request_call(f.server, &s1, &call_details,
254 &request_metadata_recv, f.server_cq,
255 f.server_cq, tag(101)));
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800256
Craig Tiller3b05a122015-04-28 15:14:40 -0700257 op = ops;
258 op->op = GRPC_OP_SEND_INITIAL_METADATA;
259 op->data.send_initial_metadata.count = 0;
260 op++;
261 op->op = GRPC_OP_SEND_CLOSE_FROM_CLIENT;
262 op++;
Craig Tiller9f3675f2015-04-29 13:56:33 -0700263 GPR_ASSERT(GRPC_CALL_OK ==
264 grpc_call_start_batch(c1, ops, op - ops, tag(301)));
Craig Tiller3b05a122015-04-28 15:14:40 -0700265
266 op = ops;
267 op->op = GRPC_OP_RECV_STATUS_ON_CLIENT;
Craig Tillerfe2b8352015-04-28 15:46:50 -0700268 op->data.recv_status_on_client.trailing_metadata = &trailing_metadata_recv1;
269 op->data.recv_status_on_client.status = &status1;
270 op->data.recv_status_on_client.status_details = &details1;
271 op->data.recv_status_on_client.status_details_capacity = &details_capacity1;
Craig Tiller3b05a122015-04-28 15:14:40 -0700272 op++;
Craig Tiller06eb5ae2015-04-30 13:48:58 -0700273 op->op = GRPC_OP_RECV_INITIAL_METADATA;
274 op->data.recv_initial_metadata = &initial_metadata_recv1;
275 op++;
Craig Tiller9f3675f2015-04-29 13:56:33 -0700276 GPR_ASSERT(GRPC_CALL_OK ==
277 grpc_call_start_batch(c1, ops, op - ops, tag(302)));
Craig Tiller3b05a122015-04-28 15:14:40 -0700278
279 op = ops;
280 op->op = GRPC_OP_SEND_INITIAL_METADATA;
281 op->data.send_initial_metadata.count = 0;
282 op++;
283 op->op = GRPC_OP_SEND_CLOSE_FROM_CLIENT;
284 op++;
Craig Tiller9f3675f2015-04-29 13:56:33 -0700285 GPR_ASSERT(GRPC_CALL_OK ==
286 grpc_call_start_batch(c2, ops, op - ops, tag(401)));
Craig Tiller3b05a122015-04-28 15:14:40 -0700287
288 op = ops;
289 op->op = GRPC_OP_RECV_STATUS_ON_CLIENT;
Craig Tillerfe2b8352015-04-28 15:46:50 -0700290 op->data.recv_status_on_client.trailing_metadata = &trailing_metadata_recv2;
291 op->data.recv_status_on_client.status = &status2;
292 op->data.recv_status_on_client.status_details = &details2;
293 op->data.recv_status_on_client.status_details_capacity = &details_capacity2;
Craig Tiller3b05a122015-04-28 15:14:40 -0700294 op++;
Craig Tiller06eb5ae2015-04-30 13:48:58 -0700295 op->op = GRPC_OP_RECV_INITIAL_METADATA;
296 op->data.recv_initial_metadata = &initial_metadata_recv1;
297 op++;
Craig Tiller9f3675f2015-04-29 13:56:33 -0700298 GPR_ASSERT(GRPC_CALL_OK ==
299 grpc_call_start_batch(c2, ops, op - ops, tag(402)));
Craig Tiller80fa15c2015-01-13 16:10:49 -0800300
Craig Tiller64be9f72015-05-04 14:53:51 -0700301 cq_expect_completion(v_server, tag(101), 1);
Craig Tiller06eb5ae2015-04-30 13:48:58 -0700302 cq_verify(v_server);
303
Craig Tillerf1071202015-04-30 13:29:48 -0700304 ev = grpc_completion_queue_next(f.client_cq,
305 GRPC_TIMEOUT_SECONDS_TO_DEADLINE(3));
Craig Tiller64be9f72015-05-04 14:53:51 -0700306 GPR_ASSERT(ev.type == GRPC_OP_COMPLETE);
307 GPR_ASSERT(ev.success);
308 GPR_ASSERT(ev.tag == tag(301) || ev.tag == tag(401));
ctiller58393c22015-01-07 14:03:30 -0800309 /* The /alpha or /beta calls started above could be invoked (but NOT both);
310 * check this here */
Craig Tillerfc84e7b2015-01-13 16:49:44 -0800311 /* We'll get tag 303 or 403, we want 300, 400 */
Craig Tiller64be9f72015-05-04 14:53:51 -0700312 live_call = ((int)(gpr_intptr)ev.tag) - 1;
ctiller58393c22015-01-07 14:03:30 -0800313
Craig Tiller3b05a122015-04-28 15:14:40 -0700314 op = ops;
315 op->op = GRPC_OP_SEND_INITIAL_METADATA;
316 op->data.send_initial_metadata.count = 0;
317 op++;
318 op->op = GRPC_OP_RECV_CLOSE_ON_SERVER;
319 op->data.recv_close_on_server.cancelled = &was_cancelled;
320 op++;
Craig Tiller3b05a122015-04-28 15:14:40 -0700321 op->op = GRPC_OP_SEND_STATUS_FROM_SERVER;
322 op->data.send_status_from_server.trailing_metadata_count = 0;
323 op->data.send_status_from_server.status = GRPC_STATUS_UNIMPLEMENTED;
324 op->data.send_status_from_server.status_details = "xyz";
325 op++;
Craig Tiller9f3675f2015-04-29 13:56:33 -0700326 GPR_ASSERT(GRPC_CALL_OK ==
Craig Tiller06eb5ae2015-04-30 13:48:58 -0700327 grpc_call_start_batch(s1, ops, op - ops, tag(102)));
Craig Tiller3b05a122015-04-28 15:14:40 -0700328
Craig Tiller64be9f72015-05-04 14:53:51 -0700329 cq_expect_completion(v_server, tag(102), 1);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800330 cq_verify(v_server);
331
Craig Tiller64be9f72015-05-04 14:53:51 -0700332 cq_expect_completion(v_client, tag(live_call + 2), 1);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800333 /* first request is finished, we should be able to start the second */
Craig Tillerbf444932015-01-13 17:13:08 -0800334 live_call = (live_call == 300) ? 400 : 300;
Craig Tiller64be9f72015-05-04 14:53:51 -0700335 cq_expect_completion(v_client, tag(live_call + 1), 1);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800336 cq_verify(v_client);
337
Craig Tillerf9e6adf2015-05-06 11:45:59 -0700338 GPR_ASSERT(GRPC_CALL_OK ==
339 grpc_server_request_call(f.server, &s2, &call_details,
340 &request_metadata_recv, f.server_cq,
341 f.server_cq, tag(201)));
Craig Tiller64be9f72015-05-04 14:53:51 -0700342 cq_expect_completion(v_server, tag(201), 1);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800343 cq_verify(v_server);
344
Craig Tiller3b05a122015-04-28 15:14:40 -0700345 op = ops;
346 op->op = GRPC_OP_SEND_INITIAL_METADATA;
347 op->data.send_initial_metadata.count = 0;
348 op++;
349 op->op = GRPC_OP_RECV_CLOSE_ON_SERVER;
350 op->data.recv_close_on_server.cancelled = &was_cancelled;
351 op++;
Craig Tillerfe2b8352015-04-28 15:46:50 -0700352 op->op = GRPC_OP_SEND_STATUS_FROM_SERVER;
353 op->data.send_status_from_server.trailing_metadata_count = 0;
354 op->data.send_status_from_server.status = GRPC_STATUS_UNIMPLEMENTED;
355 op->data.send_status_from_server.status_details = "xyz";
356 op++;
Craig Tiller9f3675f2015-04-29 13:56:33 -0700357 GPR_ASSERT(GRPC_CALL_OK ==
Craig Tiller06eb5ae2015-04-30 13:48:58 -0700358 grpc_call_start_batch(s2, ops, op - ops, tag(202)));
359
Craig Tiller64be9f72015-05-04 14:53:51 -0700360 cq_expect_completion(v_client, tag(live_call + 2), 1);
Craig Tiller06eb5ae2015-04-30 13:48:58 -0700361 cq_verify(v_client);
Craig Tillerfe2b8352015-04-28 15:46:50 -0700362
Craig Tiller64be9f72015-05-04 14:53:51 -0700363 cq_expect_completion(v_server, tag(202), 1);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800364 cq_verify(v_server);
365
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800366 cq_verifier_destroy(v_client);
367 cq_verifier_destroy(v_server);
368
369 grpc_call_destroy(c1);
370 grpc_call_destroy(s1);
371 grpc_call_destroy(c2);
372 grpc_call_destroy(s2);
373
Craig Tiller5fe7e5d2015-05-01 10:52:35 -0700374 gpr_free(details1);
375 gpr_free(details2);
376 grpc_metadata_array_destroy(&initial_metadata_recv1);
377 grpc_metadata_array_destroy(&trailing_metadata_recv1);
378 grpc_metadata_array_destroy(&initial_metadata_recv2);
379 grpc_metadata_array_destroy(&trailing_metadata_recv2);
380 grpc_metadata_array_destroy(&request_metadata_recv);
381 grpc_call_details_destroy(&call_details);
382
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800383 end_test(&f);
384 config.tear_down_data(&f);
385}
386
387void grpc_end2end_tests(grpc_end2end_test_config config) {
388 test_max_concurrent_streams(config);
Craig Tiller190d3602015-02-18 09:23:38 -0800389}