• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
close_cb(uv_handle_t * handle)38 static void close_cb(uv_handle_t* handle) {
39   ASSERT_NOT_NULL(handle);
40   close_cb_called++;
41 }
42 
43 
TEST_IMPL(pipe_bind_error_addrinuse)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 
66   uv_run(uv_default_loop(), UV_RUN_DEFAULT);
67 
68   ASSERT(close_cb_called == 2);
69 
70   MAKE_VALGRIND_HAPPY();
71   return 0;
72 }
73 
74 
TEST_IMPL(pipe_bind_error_addrnotavail)75 TEST_IMPL(pipe_bind_error_addrnotavail) {
76   uv_pipe_t server;
77   int r;
78 
79   r = uv_pipe_init(uv_default_loop(), &server, 0);
80   ASSERT(r == 0);
81 
82   r = uv_pipe_bind(&server, BAD_PIPENAME);
83   ASSERT(r == UV_EACCES);
84 
85   uv_close((uv_handle_t*)&server, close_cb);
86 
87   uv_run(uv_default_loop(), UV_RUN_DEFAULT);
88 
89   ASSERT(close_cb_called == 1);
90 
91   MAKE_VALGRIND_HAPPY();
92   return 0;
93 }
94 
95 
TEST_IMPL(pipe_bind_error_inval)96 TEST_IMPL(pipe_bind_error_inval) {
97   uv_pipe_t server;
98   int r;
99 
100   r = uv_pipe_init(uv_default_loop(), &server, 0);
101   ASSERT(r == 0);
102   r = uv_pipe_bind(&server, TEST_PIPENAME);
103   ASSERT(r == 0);
104   r = uv_pipe_bind(&server, TEST_PIPENAME_2);
105   ASSERT(r == UV_EINVAL);
106 
107   uv_close((uv_handle_t*)&server, close_cb);
108 
109   uv_run(uv_default_loop(), UV_RUN_DEFAULT);
110 
111   ASSERT(close_cb_called == 1);
112 
113   MAKE_VALGRIND_HAPPY();
114   return 0;
115 }
116 
117 
TEST_IMPL(pipe_listen_without_bind)118 TEST_IMPL(pipe_listen_without_bind) {
119 #if defined(NO_SELF_CONNECT)
120   RETURN_SKIP(NO_SELF_CONNECT);
121 #endif
122   uv_pipe_t server;
123   int r;
124 
125   r = uv_pipe_init(uv_default_loop(), &server, 0);
126   ASSERT(r == 0);
127 
128   r = uv_listen((uv_stream_t*)&server, SOMAXCONN, NULL);
129   ASSERT(r == UV_EINVAL);
130 
131   uv_close((uv_handle_t*)&server, close_cb);
132 
133   uv_run(uv_default_loop(), UV_RUN_DEFAULT);
134 
135   ASSERT(close_cb_called == 1);
136 
137   MAKE_VALGRIND_HAPPY();
138   return 0;
139 }
140