blob: 9eace97afd0ca2923e4eb20a6cdf68a629b87ce3 [file] [log] [blame]
Muxi Yan121e7892017-07-12 12:30:41 -07001/*
2 *
3 * Copyright 2015 gRPC authors.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 */
18
19#include "test/core/end2end/end2end_tests.h"
20
21#include <stdio.h>
22#include <string.h>
23
24#include <grpc/byte_buffer.h>
25#include <grpc/compression.h>
Muxi Yan121e7892017-07-12 12:30:41 -070026#include <grpc/support/alloc.h>
27#include <grpc/support/log.h>
28#include <grpc/support/time.h>
Muxi Yan121e7892017-07-12 12:30:41 -070029#include "src/core/lib/channel/channel_args.h"
30#include "src/core/lib/surface/call.h"
31#include "test/core/end2end/cq_verifier.h"
32
Muxi Yan38fcd0c2017-12-06 18:52:18 -080033static void* tag(intptr_t t) { return (void*)t; }
Muxi Yan121e7892017-07-12 12:30:41 -070034
35static grpc_end2end_test_fixture begin_test(grpc_end2end_test_config config,
Muxi Yan38fcd0c2017-12-06 18:52:18 -080036 const char* test_name,
37 grpc_channel_args* client_args,
38 grpc_channel_args* server_args) {
Muxi Yan121e7892017-07-12 12:30:41 -070039 grpc_end2end_test_fixture f;
40 gpr_log(GPR_INFO, "Running test: %s/%s", test_name, config.name);
41 f = config.create_fixture(client_args, server_args);
42 config.init_server(&f, server_args);
43 config.init_client(&f, client_args);
44 return f;
45}
46
47static gpr_timespec n_seconds_from_now(int n) {
48 return grpc_timeout_seconds_to_deadline(n);
49}
50
51static gpr_timespec five_seconds_from_now(void) {
52 return n_seconds_from_now(5);
53}
54
Muxi Yan38fcd0c2017-12-06 18:52:18 -080055static void drain_cq(grpc_completion_queue* cq) {
Muxi Yan121e7892017-07-12 12:30:41 -070056 grpc_event ev;
57 do {
Craig Tiller4ac2b8e2017-11-10 14:14:17 -080058 ev = grpc_completion_queue_next(cq, five_seconds_from_now(), nullptr);
Muxi Yan121e7892017-07-12 12:30:41 -070059 } while (ev.type != GRPC_QUEUE_SHUTDOWN);
60}
61
Muxi Yan38fcd0c2017-12-06 18:52:18 -080062static void shutdown_server(grpc_end2end_test_fixture* f) {
Muxi Yan121e7892017-07-12 12:30:41 -070063 if (!f->server) return;
64 grpc_server_shutdown_and_notify(f->server, f->shutdown_cq, tag(1000));
65 GPR_ASSERT(grpc_completion_queue_pluck(f->shutdown_cq, tag(1000),
66 grpc_timeout_seconds_to_deadline(5),
Craig Tiller4ac2b8e2017-11-10 14:14:17 -080067 nullptr)
Muxi Yan121e7892017-07-12 12:30:41 -070068 .type == GRPC_OP_COMPLETE);
69 grpc_server_destroy(f->server);
Craig Tiller4ac2b8e2017-11-10 14:14:17 -080070 f->server = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -070071}
72
Muxi Yan38fcd0c2017-12-06 18:52:18 -080073static void shutdown_client(grpc_end2end_test_fixture* f) {
Muxi Yan121e7892017-07-12 12:30:41 -070074 if (!f->client) return;
75 grpc_channel_destroy(f->client);
Craig Tiller4ac2b8e2017-11-10 14:14:17 -080076 f->client = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -070077}
78
Muxi Yan38fcd0c2017-12-06 18:52:18 -080079static void end_test(grpc_end2end_test_fixture* f) {
Muxi Yan121e7892017-07-12 12:30:41 -070080 shutdown_server(f);
81 shutdown_client(f);
82
83 grpc_completion_queue_shutdown(f->cq);
84 drain_cq(f->cq);
85 grpc_completion_queue_destroy(f->cq);
86 grpc_completion_queue_destroy(f->shutdown_cq);
87}
88
89/* Creates and returns a grpc_slice containing random alphanumeric characters.
90 */
91static grpc_slice generate_random_slice() {
92 size_t i;
93 static const char chars[] = "abcdefghijklmnopqrstuvwxyz1234567890";
Muxi Yan38fcd0c2017-12-06 18:52:18 -080094 char* output;
Muxi Yan121e7892017-07-12 12:30:41 -070095 const size_t output_size = 1024 * 1024;
Noah Eisenbe82e642018-02-09 09:16:55 -080096 output = static_cast<char*>(gpr_malloc(output_size));
Muxi Yan121e7892017-07-12 12:30:41 -070097 for (i = 0; i < output_size - 1; ++i) {
Noah Eisenbe82e642018-02-09 09:16:55 -080098 output[i] = chars[rand() % static_cast<int>(sizeof(chars) - 1)];
Muxi Yan121e7892017-07-12 12:30:41 -070099 }
100 output[output_size - 1] = '\0';
101 grpc_slice out = grpc_slice_from_copied_string(output);
102 gpr_free(output);
103 return out;
104}
105
106static void request_response_with_payload(grpc_end2end_test_config config,
107 grpc_end2end_test_fixture f) {
108 /* Create large request and response bodies. These are big enough to require
109 * multiple round trips to deliver to the peer, and their exact contents of
110 * will be verified on completion. */
111 grpc_slice request_payload_slice = generate_random_slice();
112 grpc_slice response_payload_slice = generate_random_slice();
113
Muxi Yan38fcd0c2017-12-06 18:52:18 -0800114 grpc_call* c;
115 grpc_call* s;
116 grpc_byte_buffer* request_payload =
Muxi Yan121e7892017-07-12 12:30:41 -0700117 grpc_raw_byte_buffer_create(&request_payload_slice, 1);
Muxi Yan38fcd0c2017-12-06 18:52:18 -0800118 grpc_byte_buffer* response_payload =
Muxi Yan121e7892017-07-12 12:30:41 -0700119 grpc_raw_byte_buffer_create(&response_payload_slice, 1);
Muxi Yan38fcd0c2017-12-06 18:52:18 -0800120 cq_verifier* cqv = cq_verifier_create(f.cq);
Muxi Yan121e7892017-07-12 12:30:41 -0700121 grpc_op ops[6];
Muxi Yan38fcd0c2017-12-06 18:52:18 -0800122 grpc_op* op;
Muxi Yan121e7892017-07-12 12:30:41 -0700123 grpc_metadata_array initial_metadata_recv;
124 grpc_metadata_array trailing_metadata_recv;
125 grpc_metadata_array request_metadata_recv;
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800126 grpc_byte_buffer* request_payload_recv = nullptr;
127 grpc_byte_buffer* response_payload_recv = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -0700128 grpc_call_details call_details;
129 grpc_status_code status;
130 grpc_call_error error;
131 grpc_slice details;
132 int was_cancelled = 2;
133
134 gpr_timespec deadline = n_seconds_from_now(60);
135 c = grpc_channel_create_call(
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800136 f.client, nullptr, GRPC_PROPAGATE_DEFAULTS, f.cq,
Muxi Yan121e7892017-07-12 12:30:41 -0700137 grpc_slice_from_static_string("/foo"),
138 get_host_override_slice("foo.test.google.fr:1234", config), deadline,
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800139 nullptr);
Muxi Yan121e7892017-07-12 12:30:41 -0700140 GPR_ASSERT(c);
141
142 grpc_metadata_array_init(&initial_metadata_recv);
143 grpc_metadata_array_init(&trailing_metadata_recv);
144 grpc_metadata_array_init(&request_metadata_recv);
145 grpc_call_details_init(&call_details);
146
147 memset(ops, 0, sizeof(ops));
148 op = ops;
149 op->op = GRPC_OP_SEND_INITIAL_METADATA;
150 op->data.send_initial_metadata.count = 0;
151 op->flags = 0;
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800152 op->reserved = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -0700153 op++;
154 op->op = GRPC_OP_SEND_MESSAGE;
155 op->data.send_message.send_message = request_payload;
156 op->flags = 0;
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800157 op->reserved = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -0700158 op++;
159 op->op = GRPC_OP_SEND_CLOSE_FROM_CLIENT;
160 op->flags = 0;
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800161 op->reserved = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -0700162 op++;
163 op->op = GRPC_OP_RECV_INITIAL_METADATA;
164 op->data.recv_initial_metadata.recv_initial_metadata = &initial_metadata_recv;
165 op->flags = 0;
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800166 op->reserved = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -0700167 op++;
168 op->op = GRPC_OP_RECV_MESSAGE;
169 op->data.recv_message.recv_message = &response_payload_recv;
170 op->flags = 0;
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800171 op->reserved = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -0700172 op++;
173 op->op = GRPC_OP_RECV_STATUS_ON_CLIENT;
174 op->data.recv_status_on_client.trailing_metadata = &trailing_metadata_recv;
175 op->data.recv_status_on_client.status = &status;
176 op->data.recv_status_on_client.status_details = &details;
177 op->flags = 0;
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800178 op->reserved = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -0700179 op++;
Noah Eisen4d20a662018-02-09 09:34:04 -0800180 error = grpc_call_start_batch(c, ops, static_cast<size_t>(op - ops), tag(1),
181 nullptr);
Muxi Yan121e7892017-07-12 12:30:41 -0700182 GPR_ASSERT(GRPC_CALL_OK == error);
183
184 error =
185 grpc_server_request_call(f.server, &s, &call_details,
186 &request_metadata_recv, f.cq, f.cq, tag(101));
187 GPR_ASSERT(GRPC_CALL_OK == error);
188 CQ_EXPECT_COMPLETION(cqv, tag(101), 1);
189 cq_verify(cqv);
190
191 memset(ops, 0, sizeof(ops));
192 op = ops;
193 op->op = GRPC_OP_SEND_INITIAL_METADATA;
194 op->data.send_initial_metadata.count = 0;
195 op->flags = 0;
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800196 op->reserved = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -0700197 op++;
198 op->op = GRPC_OP_RECV_MESSAGE;
199 op->data.recv_message.recv_message = &request_payload_recv;
200 op->flags = 0;
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800201 op->reserved = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -0700202 op++;
Noah Eisen4d20a662018-02-09 09:34:04 -0800203 error = grpc_call_start_batch(s, ops, static_cast<size_t>(op - ops), tag(102),
204 nullptr);
Muxi Yan121e7892017-07-12 12:30:41 -0700205 GPR_ASSERT(GRPC_CALL_OK == error);
206
207 CQ_EXPECT_COMPLETION(cqv, tag(102), 1);
208 cq_verify(cqv);
209
210 memset(ops, 0, sizeof(ops));
211 op = ops;
212 op->op = GRPC_OP_RECV_CLOSE_ON_SERVER;
213 op->data.recv_close_on_server.cancelled = &was_cancelled;
214 op->flags = 0;
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800215 op->reserved = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -0700216 op++;
217 op->op = GRPC_OP_SEND_MESSAGE;
218 op->data.send_message.send_message = response_payload;
219 op->flags = 0;
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800220 op->reserved = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -0700221 op++;
222 op->op = GRPC_OP_SEND_STATUS_FROM_SERVER;
223 op->data.send_status_from_server.trailing_metadata_count = 0;
224 op->data.send_status_from_server.status = GRPC_STATUS_OK;
225 grpc_slice status_details = grpc_slice_from_static_string("xyz");
226 op->data.send_status_from_server.status_details = &status_details;
227 op->flags = 0;
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800228 op->reserved = nullptr;
Muxi Yan121e7892017-07-12 12:30:41 -0700229 op++;
Noah Eisen4d20a662018-02-09 09:34:04 -0800230 error = grpc_call_start_batch(s, ops, static_cast<size_t>(op - ops), tag(103),
231 nullptr);
Muxi Yan121e7892017-07-12 12:30:41 -0700232 GPR_ASSERT(GRPC_CALL_OK == error);
233
234 CQ_EXPECT_COMPLETION(cqv, tag(103), 1);
235 CQ_EXPECT_COMPLETION(cqv, tag(1), 1);
236 cq_verify(cqv);
237
238 GPR_ASSERT(status == GRPC_STATUS_OK);
239 GPR_ASSERT(0 == grpc_slice_str_cmp(details, "xyz"));
240 GPR_ASSERT(0 == grpc_slice_str_cmp(call_details.method, "/foo"));
241 validate_host_override_string("foo.test.google.fr:1234", call_details.host,
242 config);
243 GPR_ASSERT(was_cancelled == 0);
244 GPR_ASSERT(byte_buffer_eq_slice(request_payload_recv, request_payload_slice));
245 GPR_ASSERT(
246 byte_buffer_eq_slice(response_payload_recv, response_payload_slice));
247
248 grpc_slice_unref(details);
249 grpc_metadata_array_destroy(&initial_metadata_recv);
250 grpc_metadata_array_destroy(&trailing_metadata_recv);
251 grpc_metadata_array_destroy(&request_metadata_recv);
252 grpc_call_details_destroy(&call_details);
253
254 grpc_call_unref(c);
255 grpc_call_unref(s);
256
257 cq_verifier_destroy(cqv);
258
259 grpc_byte_buffer_destroy(request_payload);
260 grpc_byte_buffer_destroy(response_payload);
261 grpc_byte_buffer_destroy(request_payload_recv);
262 grpc_byte_buffer_destroy(response_payload_recv);
263}
264
265/* Client sends a request with payload, server reads then returns a response
266 payload and status. */
267static void test_invoke_request_response_with_payload(
268 grpc_end2end_test_config config) {
Muxi Yan38fcd0c2017-12-06 18:52:18 -0800269 grpc_channel_args* client_args = grpc_channel_args_set_compression_algorithm(
Muxi Yan67454d72017-12-06 22:09:36 -0800270 nullptr, GRPC_COMPRESS_STREAM_GZIP);
Muxi Yan38fcd0c2017-12-06 18:52:18 -0800271 grpc_channel_args* server_args = grpc_channel_args_set_compression_algorithm(
Muxi Yan67454d72017-12-06 22:09:36 -0800272 nullptr, GRPC_COMPRESS_STREAM_GZIP);
Muxi Yan121e7892017-07-12 12:30:41 -0700273 grpc_end2end_test_fixture f =
274 begin_test(config, "test_invoke_request_response_with_payload",
275 client_args, server_args);
276 request_response_with_payload(config, f);
277 end_test(&f);
278 config.tear_down_data(&f);
279 {
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800280 grpc_core::ExecCtx exec_ctx;
281 grpc_channel_args_destroy(client_args);
282 grpc_channel_args_destroy(server_args);
Muxi Yan121e7892017-07-12 12:30:41 -0700283 }
284}
285
286static void test_invoke_10_request_response_with_payload(
287 grpc_end2end_test_config config) {
288 int i;
289 grpc_end2end_test_fixture f = begin_test(
Craig Tiller4ac2b8e2017-11-10 14:14:17 -0800290 config, "test_invoke_10_request_response_with_payload", nullptr, nullptr);
Muxi Yan121e7892017-07-12 12:30:41 -0700291 for (i = 0; i < 10; i++) {
292 request_response_with_payload(config, f);
293 }
294 end_test(&f);
295 config.tear_down_data(&f);
296}
297
Muxi Yan6f8217b2017-08-15 09:55:30 -0700298void stream_compression_payload(grpc_end2end_test_config config) {
Muxi Yan121e7892017-07-12 12:30:41 -0700299 test_invoke_request_response_with_payload(config);
300 test_invoke_10_request_response_with_payload(config);
301}
302
Muxi Yan6f8217b2017-08-15 09:55:30 -0700303void stream_compression_payload_pre_init(void) {}