blob: d0797e0a6446ca946b3aa721e29f432714f81895 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller6169d5f2016-03-31 07:46:18 -07003 * 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
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080036#include <string.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080037
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080038#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 Tilleradcb92d2016-03-28 10:14:05 -070044#include "src/core/ext/transport/chttp2/transport/chttp2_transport.h"
Craig Tiller9533d042016-03-25 17:11:06 -070045#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"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080050#include "test/core/util/port.h"
51#include "test/core/util/test_config.h"
52
53typedef struct fullstack_fixture_data {
54 char *localaddr;
55} fullstack_fixture_data;
56
57static grpc_end2end_test_fixture chttp2_create_fixture_fullstack(
58 grpc_channel_args *client_args, grpc_channel_args *server_args) {
59 grpc_end2end_test_fixture f;
60 int port = grpc_pick_unused_port_or_die();
61 fullstack_fixture_data *ffd = gpr_malloc(sizeof(fullstack_fixture_data));
ctillerc6d61c42014-12-15 14:52:08 -080062 memset(&f, 0, sizeof(f));
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080063
64 gpr_join_host_port(&ffd->localaddr, "localhost", port);
65
66 f.fixture_data = ffd;
Nicolas "Pixel" Noble9a123df2015-07-29 23:45:08 +020067 f.cq = grpc_completion_queue_create(NULL);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080068
69 return f;
70}
71
72void chttp2_init_client_fullstack(grpc_end2end_test_fixture *f,
73 grpc_channel_args *client_args) {
74 fullstack_fixture_data *ffd = f->fixture_data;
Nicolas "Pixel" Noble9d72b142015-08-08 01:45:38 +020075 f->client = grpc_insecure_channel_create(ffd->localaddr, client_args, NULL);
Craig Tillereb3b12e2015-06-26 14:42:49 -070076 GPR_ASSERT(f->client);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080077}
78
79void chttp2_init_server_fullstack(grpc_end2end_test_fixture *f,
80 grpc_channel_args *server_args) {
81 fullstack_fixture_data *ffd = f->fixture_data;
ctillerc6d61c42014-12-15 14:52:08 -080082 if (f->server) {
83 grpc_server_destroy(f->server);
84 }
Nicolas "Pixel" Noble9a123df2015-07-29 23:45:08 +020085 f->server = grpc_server_create(server_args, NULL);
86 grpc_server_register_completion_queue(f->server, f->cq, NULL);
Craig Tillerc5ae3eb2015-08-03 10:42:22 -070087 GPR_ASSERT(grpc_server_add_insecure_http2_port(f->server, ffd->localaddr));
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080088 grpc_server_start(f->server);
89}
90
91void chttp2_tear_down_fullstack(grpc_end2end_test_fixture *f) {
92 fullstack_fixture_data *ffd = f->fixture_data;
93 gpr_free(ffd->localaddr);
94 gpr_free(ffd);
95}
96
97/* All test configurations */
98static grpc_end2end_test_config configs[] = {
99 {"chttp2/fullstack", FEATURE_MASK_SUPPORTS_DELAYED_CONNECTION,
100 chttp2_create_fixture_fullstack, chttp2_init_client_fullstack,
Craig Tiller8ad8a412015-02-25 08:36:40 -0800101 chttp2_init_server_fullstack, chttp2_tear_down_fullstack},
102};
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800103
104int main(int argc, char **argv) {
105 size_t i;
106
107 grpc_test_init(argc, argv);
108 grpc_init();
109
110 for (i = 0; i < sizeof(configs) / sizeof(*configs); i++) {
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800111 grpc_end2end_tests(argc, argv, configs[i]);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800112 }
113
114 grpc_shutdown();
115
116 return 0;
Craig Tiller190d3602015-02-18 09:23:38 -0800117}