test-pipe-bind-error.c
Go to the documentation of this file.
1 /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to
5  * deal in the Software without restriction, including without limitation the
6  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7  * sell copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
19  * IN THE SOFTWARE.
20  */
21 
22 #include "uv.h"
23 #include "task.h"
24 #include <stdio.h>
25 #include <stdlib.h>
26 
27 
28 #ifdef _WIN32
29 # define BAD_PIPENAME "bad-pipe"
30 #else
31 # define BAD_PIPENAME "/path/to/unix/socket/that/really/should/not/be/there"
32 #endif
33 
34 
35 static int close_cb_called = 0;
36 
37 
38 static void close_cb(uv_handle_t* handle) {
39  ASSERT(handle != NULL);
41 }
42 
43 
44 TEST_IMPL(pipe_bind_error_addrinuse) {
45  uv_pipe_t server1, server2;
46  int r;
47 
48  r = uv_pipe_init(uv_default_loop(), &server1, 0);
49  ASSERT(r == 0);
50  r = uv_pipe_bind(&server1, TEST_PIPENAME);
51  ASSERT(r == 0);
52 
53  r = uv_pipe_init(uv_default_loop(), &server2, 0);
54  ASSERT(r == 0);
55  r = uv_pipe_bind(&server2, TEST_PIPENAME);
56  ASSERT(r == UV_EADDRINUSE);
57 
58  r = uv_listen((uv_stream_t*)&server1, SOMAXCONN, NULL);
59  ASSERT(r == 0);
60  r = uv_listen((uv_stream_t*)&server2, SOMAXCONN, NULL);
61  ASSERT(r == UV_EINVAL);
62 
63  uv_close((uv_handle_t*)&server1, close_cb);
64  uv_close((uv_handle_t*)&server2, close_cb);
65 
67 
68  ASSERT(close_cb_called == 2);
69 
71  return 0;
72 }
73 
74 
75 TEST_IMPL(pipe_bind_error_addrnotavail) {
77  int r;
78 
80  ASSERT(r == 0);
81 
83  ASSERT(r == UV_EACCES);
84 
86 
88 
89  ASSERT(close_cb_called == 1);
90 
92  return 0;
93 }
94 
95 
96 TEST_IMPL(pipe_bind_error_inval) {
98  int r;
99 
101  ASSERT(r == 0);
103  ASSERT(r == 0);
105  ASSERT(r == UV_EINVAL);
106 
108 
110 
111  ASSERT(close_cb_called == 1);
112 
114  return 0;
115 }
116 
117 
118 TEST_IMPL(pipe_listen_without_bind) {
119 #if defined(NO_SELF_CONNECT)
120  RETURN_SKIP(NO_SELF_CONNECT);
121 #endif
123  int r;
124 
126  ASSERT(r == 0);
127 
128  r = uv_listen((uv_stream_t*)&server, SOMAXCONN, NULL);
129  ASSERT(r == UV_EINVAL);
130 
132 
134 
135  ASSERT(close_cb_called == 1);
136 
138  return 0;
139 }
TEST_PIPENAME_2
#define TEST_PIPENAME_2
Definition: task.h:62
task.h
uv_pipe_init
UV_EXTERN int uv_pipe_init(uv_loop_t *, uv_pipe_t *handle, int ipc)
Definition: unix/pipe.c:33
uv_listen
UV_EXTERN int uv_listen(uv_stream_t *stream, int backlog, uv_connection_cb cb)
Definition: unix/stream.c:656
ASSERT
#define ASSERT(expr)
Definition: task.h:102
uv_run
UV_EXTERN int uv_run(uv_loop_t *, uv_run_mode mode)
Definition: unix/core.c:361
BAD_PIPENAME
#define BAD_PIPENAME
Definition: test-pipe-bind-error.c:31
uv_close
UV_EXTERN void uv_close(uv_handle_t *handle, uv_close_cb close_cb)
Definition: unix/core.c:112
uv_stream_s
Definition: uv.h:491
TEST_IMPL
TEST_IMPL(pipe_bind_error_addrinuse)
Definition: test-pipe-bind-error.c:44
server
std::unique_ptr< Server > server
Definition: channelz_service_test.cc:330
uv_default_loop
UV_EXTERN uv_loop_t * uv_default_loop(void)
Definition: uv-common.c:733
UV_RUN_DEFAULT
@ UV_RUN_DEFAULT
Definition: uv.h:254
uv.h
MAKE_VALGRIND_HAPPY
#define MAKE_VALGRIND_HAPPY()
Definition: task.h:229
server
Definition: examples/python/async_streaming/server.py:1
fix_build_deps.r
r
Definition: fix_build_deps.py:491
uv_pipe_s
Definition: uv.h:757
close_cb
static void close_cb(uv_handle_t *handle)
Definition: test-pipe-bind-error.c:38
RETURN_SKIP
#define RETURN_SKIP(explanation)
Definition: task.h:262
handle
static csh handle
Definition: test_arm_regression.c:16
uv_handle_s
Definition: uv.h:441
TEST_PIPENAME
#define TEST_PIPENAME
Definition: task.h:61
uv_pipe_bind
UV_EXTERN int uv_pipe_bind(uv_pipe_t *handle, const char *name)
Definition: unix/pipe.c:43
close_cb_called
static int close_cb_called
Definition: test-pipe-bind-error.c:35


grpc
Author(s):
autogenerated on Thu Mar 13 2025 03:01:30