blob: 43ebf7eed587863304aa0bfc5b7ab80d420d5f2e [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"
ctillerc6d61c42014-12-15 14:52:08 -080035
36#include <string.h>
37
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080038#include "src/core/channel/client_channel.h"
39#include "src/core/channel/connected_channel.h"
klempnercd45aad2014-12-23 15:53:16 -080040#include "src/core/channel/http_client_filter.h"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080041#include "src/core/channel/http_server_filter.h"
ctiller18b49ab2014-12-09 14:39:16 -080042#include "src/core/iomgr/endpoint_pair.h"
43#include "src/core/iomgr/iomgr.h"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080044#include "src/core/surface/channel.h"
45#include "src/core/surface/client.h"
46#include "src/core/surface/server.h"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080047#include "src/core/transport/chttp2_transport.h"
48#include <grpc/support/alloc.h>
49#include <grpc/support/log.h>
50#include <grpc/support/sync.h>
51#include <grpc/support/thd.h>
52#include <grpc/support/useful.h>
53#include "test/core/util/port.h"
54#include "test/core/util/test_config.h"
55
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080056/* chttp2 transport that is immediately available (used for testing
57 connected_channel without a client_channel */
58
59static grpc_transport_setup_result server_setup_transport(
60 void *ts, grpc_transport *transport, grpc_mdctx *mdctx) {
61 grpc_end2end_test_fixture *f = ts;
Craig Tiller06aeea72015-04-23 10:54:45 -070062 static grpc_channel_filter const *extra_filters[] = {
63 &grpc_http_server_filter};
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080064 return grpc_server_setup_transport(f->server, transport, extra_filters,
65 GPR_ARRAY_SIZE(extra_filters), mdctx);
66}
67
68typedef struct {
69 grpc_end2end_test_fixture *f;
70 grpc_channel_args *client_args;
71} sp_client_setup;
72
73static grpc_transport_setup_result client_setup_transport(
74 void *ts, grpc_transport *transport, grpc_mdctx *mdctx) {
75 sp_client_setup *cs = ts;
76
Craig Tiller06aeea72015-04-23 10:54:45 -070077 const grpc_channel_filter *filters[] = {&grpc_client_surface_filter,
78 &grpc_http_client_filter,
79 &grpc_connected_channel_filter};
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080080 size_t nfilters = sizeof(filters) / sizeof(*filters);
81 grpc_channel *channel = grpc_channel_create_from_filters(
82 filters, nfilters, cs->client_args, mdctx, 1);
83
84 cs->f->client = channel;
85
86 return grpc_connected_channel_bind_transport(
87 grpc_channel_get_channel_stack(channel), transport);
88}
89
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080090static grpc_end2end_test_fixture chttp2_create_fixture_socketpair(
91 grpc_channel_args *client_args, grpc_channel_args *server_args) {
ctiller18b49ab2014-12-09 14:39:16 -080092 grpc_endpoint_pair *sfd = gpr_malloc(sizeof(grpc_endpoint_pair));
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080093
94 grpc_end2end_test_fixture f;
ctillerc6d61c42014-12-15 14:52:08 -080095 memset(&f, 0, sizeof(f));
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080096 f.fixture_data = sfd;
97 f.client_cq = grpc_completion_queue_create();
98 f.server_cq = grpc_completion_queue_create();
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080099
ctiller18b49ab2014-12-09 14:39:16 -0800100 *sfd = grpc_iomgr_create_endpoint_pair(65536);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800101
102 return f;
103}
104
105static void chttp2_init_client_socketpair(grpc_end2end_test_fixture *f,
106 grpc_channel_args *client_args) {
ctiller18b49ab2014-12-09 14:39:16 -0800107 grpc_endpoint_pair *sfd = f->fixture_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800108 sp_client_setup cs;
109 cs.client_args = client_args;
110 cs.f = f;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800111 grpc_create_chttp2_transport(client_setup_transport, &cs, client_args,
ctiller18b49ab2014-12-09 14:39:16 -0800112 sfd->client, NULL, 0, grpc_mdctx_create(), 1);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800113 GPR_ASSERT(f->client);
114}
115
116static void chttp2_init_server_socketpair(grpc_end2end_test_fixture *f,
117 grpc_channel_args *server_args) {
ctiller18b49ab2014-12-09 14:39:16 -0800118 grpc_endpoint_pair *sfd = f->fixture_data;
ctillerc6d61c42014-12-15 14:52:08 -0800119 GPR_ASSERT(!f->server);
Craig Tillerf9e6adf2015-05-06 11:45:59 -0700120 f->server = grpc_server_create_from_filters(NULL, 0, server_args);
121 grpc_server_register_completion_queue(f->server, f->server_cq);
ctiller58393c22015-01-07 14:03:30 -0800122 grpc_server_start(f->server);
ctiller18b49ab2014-12-09 14:39:16 -0800123 grpc_create_chttp2_transport(server_setup_transport, f, server_args,
124 sfd->server, NULL, 0, grpc_mdctx_create(), 0);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800125}
126
127static void chttp2_tear_down_socketpair(grpc_end2end_test_fixture *f) {
128 gpr_free(f->fixture_data);
129}
130
131/* All test configurations */
132static grpc_end2end_test_config configs[] = {
133 {"chttp2/socketpair", 0, chttp2_create_fixture_socketpair,
134 chttp2_init_client_socketpair, chttp2_init_server_socketpair,
Craig Tiller8ad8a412015-02-25 08:36:40 -0800135 chttp2_tear_down_socketpair},
136};
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800137
138int main(int argc, char **argv) {
139 size_t i;
140
141 grpc_test_init(argc, argv);
142 grpc_init();
143
144 for (i = 0; i < sizeof(configs) / sizeof(*configs); i++) {
145 grpc_end2end_tests(configs[i]);
146 }
147
148 grpc_shutdown();
149
150 return 0;
Craig Tiller190d3602015-02-18 09:23:38 -0800151}