blob: 8d504e45983e83b05e06339d9f9f7117ac135b88 [file] [log] [blame]
Craig Tillerc586f4e2015-12-10 10:26:05 -08001/*
2 *
Craig Tiller2e190362016-03-25 14:33:26 -07003 * Copyright 2015-2016, Google Inc.
Craig Tillerc586f4e2015-12-10 10:26:05 -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 <string.h>
37
Craig Tillerf40df232016-03-25 13:38:14 -070038#include <grpc/support/alloc.h>
39#include <grpc/support/host_port.h>
40#include <grpc/support/log.h>
41#include <grpc/support/sync.h>
42#include <grpc/support/thd.h>
43#include <grpc/support/useful.h>
Craig Tiller9533d042016-03-25 17:11:06 -070044#include "src/core/lib/channel/channel_args.h"
45#include "src/core/lib/channel/client_channel.h"
46#include "src/core/lib/channel/connected_channel.h"
47#include "src/core/lib/channel/http_server_filter.h"
48#include "src/core/lib/surface/channel.h"
49#include "src/core/lib/surface/server.h"
50#include "src/core/lib/transport/chttp2_transport.h"
Craig Tillerc586f4e2015-12-10 10:26:05 -080051#include "test/core/util/port.h"
52#include "test/core/util/test_config.h"
53
54typedef struct fullstack_fixture_data {
55 char *localaddr;
56} fullstack_fixture_data;
57
58static grpc_end2end_test_fixture chttp2_create_fixture_fullstack(
59 grpc_channel_args *client_args, grpc_channel_args *server_args) {
60 grpc_end2end_test_fixture f;
61 int port = grpc_pick_unused_port_or_die();
62 fullstack_fixture_data *ffd = gpr_malloc(sizeof(fullstack_fixture_data));
63 memset(&f, 0, sizeof(f));
64
65 gpr_join_host_port(&ffd->localaddr, "localhost", port);
66
67 f.fixture_data = ffd;
68 f.cq = grpc_completion_queue_create(NULL);
69
70 return f;
71}
72
73static grpc_arg make_census_enable_arg(void) {
74 grpc_arg arg;
75 arg.type = GRPC_ARG_INTEGER;
76 arg.key = GRPC_ARG_ENABLE_CENSUS;
77 arg.value.integer = 1;
78 return arg;
79}
80
81void chttp2_init_client_fullstack(grpc_end2end_test_fixture *f,
82 grpc_channel_args *client_args) {
83 fullstack_fixture_data *ffd = f->fixture_data;
84 grpc_arg arg = make_census_enable_arg();
85 client_args = grpc_channel_args_copy_and_add(client_args, &arg, 1);
86 f->client = grpc_insecure_channel_create(ffd->localaddr, client_args, NULL);
87 grpc_channel_args_destroy(client_args);
88 GPR_ASSERT(f->client);
89}
90
91void chttp2_init_server_fullstack(grpc_end2end_test_fixture *f,
92 grpc_channel_args *server_args) {
93 fullstack_fixture_data *ffd = f->fixture_data;
94 grpc_arg arg = make_census_enable_arg();
95 if (f->server) {
96 grpc_server_destroy(f->server);
97 }
98 server_args = grpc_channel_args_copy_and_add(server_args, &arg, 1);
99 f->server = grpc_server_create(server_args, NULL);
100 grpc_channel_args_destroy(server_args);
101 grpc_server_register_completion_queue(f->server, f->cq, NULL);
102 GPR_ASSERT(grpc_server_add_insecure_http2_port(f->server, ffd->localaddr));
103 grpc_server_start(f->server);
104}
105
106void chttp2_tear_down_fullstack(grpc_end2end_test_fixture *f) {
107 fullstack_fixture_data *ffd = f->fixture_data;
108 gpr_free(ffd->localaddr);
109 gpr_free(ffd);
110}
111
112/* All test configurations */
113static grpc_end2end_test_config configs[] = {
114 {"chttp2/fullstack", FEATURE_MASK_SUPPORTS_DELAYED_CONNECTION,
115 chttp2_create_fixture_fullstack, chttp2_init_client_fullstack,
116 chttp2_init_server_fullstack, chttp2_tear_down_fullstack},
117};
118
119int main(int argc, char **argv) {
120 size_t i;
121
122 grpc_test_init(argc, argv);
123 grpc_init();
124
125 for (i = 0; i < sizeof(configs) / sizeof(*configs); i++) {
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800126 grpc_end2end_tests(argc, argv, configs[i]);
Craig Tillerc586f4e2015-12-10 10:26:05 -0800127 }
128
129 grpc_shutdown();
130
131 return 0;
132}