blob: 35a23698e4de2fb2348307e843273ff3c2418bd0 [file] [log] [blame]
Craig Tillerae7fe922015-02-13 23:16:32 -08001/*
2 *
3 * Copyright 2014, Google Inc.
4 * 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 <stdlib.h>
37#include <string.h>
38#include <unistd.h>
39
40#include "src/core/channel/client_channel.h"
41#include "src/core/channel/connected_channel.h"
42#include "src/core/channel/http_filter.h"
43#include "src/core/channel/http_server_filter.h"
44#include "src/core/support/string.h"
45#include "src/core/surface/channel.h"
46#include "src/core/surface/client.h"
47#include "src/core/surface/server.h"
48#include "src/core/transport/chttp2_transport.h"
49#include <grpc/support/alloc.h>
50#include <grpc/support/host_port.h>
51#include <grpc/support/log.h>
52#include <grpc/support/sync.h>
53#include <grpc/support/thd.h>
54#include <grpc/support/useful.h>
55#include "test/core/util/port.h"
56#include "test/core/util/test_config.h"
57
58typedef struct fullstack_fixture_data {
59 char *localaddr;
60} fullstack_fixture_data;
61
62static int unique = 1;
63
64static grpc_end2end_test_fixture chttp2_create_fixture_fullstack(
65 grpc_channel_args *client_args, grpc_channel_args *server_args) {
66 grpc_end2end_test_fixture f;
67 fullstack_fixture_data *ffd = gpr_malloc(sizeof(fullstack_fixture_data));
68 memset(&f, 0, sizeof(f));
69
Craig Tillerd209ed02015-02-13 23:18:15 -080070 gpr_asprintf(&ffd->localaddr, "unix:/tmp/grpc_fullstack_test.%d.%d", getpid(),
71 unique++);
Craig Tillerae7fe922015-02-13 23:16:32 -080072
73 f.fixture_data = ffd;
74 f.client_cq = grpc_completion_queue_create();
75 f.server_cq = grpc_completion_queue_create();
76
77 return f;
78}
79
80void chttp2_init_client_fullstack(grpc_end2end_test_fixture *f,
81 grpc_channel_args *client_args) {
82 fullstack_fixture_data *ffd = f->fixture_data;
83 f->client = grpc_channel_create(ffd->localaddr, client_args);
84}
85
86void chttp2_init_server_fullstack(grpc_end2end_test_fixture *f,
87 grpc_channel_args *server_args) {
88 fullstack_fixture_data *ffd = f->fixture_data;
89 if (f->server) {
90 grpc_server_destroy(f->server);
91 }
92 f->server = grpc_server_create(f->server_cq, server_args);
93 GPR_ASSERT(grpc_server_add_http2_port(f->server, ffd->localaddr));
94 grpc_server_start(f->server);
95}
96
97void chttp2_tear_down_fullstack(grpc_end2end_test_fixture *f) {
98 fullstack_fixture_data *ffd = f->fixture_data;
99 gpr_free(ffd->localaddr);
100 gpr_free(ffd);
101}
102
103/* All test configurations */
104static grpc_end2end_test_config configs[] = {
105 {"chttp2/fullstack_uds", FEATURE_MASK_SUPPORTS_DELAYED_CONNECTION,
106 chttp2_create_fixture_fullstack, chttp2_init_client_fullstack,
Craig Tillerd209ed02015-02-13 23:18:15 -0800107 chttp2_init_server_fullstack, chttp2_tear_down_fullstack},
108};
Craig Tillerae7fe922015-02-13 23:16:32 -0800109
110int main(int argc, char **argv) {
111 size_t i;
112
113 grpc_test_init(argc, argv);
114 grpc_init();
115
116 for (i = 0; i < sizeof(configs) / sizeof(*configs); i++) {
117 grpc_end2end_tests(configs[i]);
118 }
119
120 grpc_shutdown();
121
122 return 0;
123}