test-pipe-server-close.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 
25 #include <string.h>
26 #include <errno.h>
27 
28 
32 
33 static int pipe_close_cb_called = 0;
35 
36 
41 }
42 
43 
45  ASSERT(req == &connect_req);
46  ASSERT(status == 0);
47 
49 
52 }
53 
54 
56  /* This function *may* be called, depending on whether accept or the
57  * connection callback is called first.
58  */
59  ASSERT(status == 0);
60 }
61 
62 
63 TEST_IMPL(pipe_server_close) {
64 #if defined(NO_SELF_CONNECT)
65  RETURN_SKIP(NO_SELF_CONNECT);
66 #endif
67  uv_loop_t* loop;
68  int r;
69 
71  ASSERT(loop != NULL);
72 
74  ASSERT(r == 0);
75 
77  ASSERT(r == 0);
78 
80  ASSERT(r == 0);
81 
83  ASSERT(r == 0);
84 
86 
88  ASSERT(r == 0);
91 
93  return 0;
94 }
async_greeter_server_with_graceful_shutdown.loop
loop
Definition: async_greeter_server_with_graceful_shutdown.py:59
task.h
uv_pipe_connect
UV_EXTERN void uv_pipe_connect(uv_connect_t *req, uv_pipe_t *handle, const char *name, uv_connect_cb cb)
Definition: unix/pipe.c:173
uv_pipe_init
UV_EXTERN int uv_pipe_init(uv_loop_t *, uv_pipe_t *handle, int ipc)
Definition: unix/pipe.c:33
uv_connect_s
Definition: uv.h:580
pipe_server
static uv_pipe_t pipe_server
Definition: test-pipe-server-close.c:30
string.h
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
TEST_IMPL
TEST_IMPL(pipe_server_close)
Definition: test-pipe-server-close.c:63
status
absl::Status status
Definition: rls.cc:251
pipe_close_cb
static void pipe_close_cb(uv_handle_t *handle)
Definition: test-pipe-server-close.c:37
pipe_client_connect_cb_called
static int pipe_client_connect_cb_called
Definition: test-pipe-server-close.c:34
uv_run
UV_EXTERN int uv_run(uv_loop_t *, uv_run_mode mode)
Definition: unix/core.c:361
connect_req
static uv_connect_t connect_req
Definition: test-pipe-server-close.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
pipe_client_connect_cb
static void pipe_client_connect_cb(uv_connect_t *req, int status)
Definition: test-pipe-server-close.c:44
uv_default_loop
UV_EXTERN uv_loop_t * uv_default_loop(void)
Definition: uv-common.c:733
req
static uv_connect_t req
Definition: test-connection-fail.c:30
UV_RUN_DEFAULT
@ UV_RUN_DEFAULT
Definition: uv.h:254
pipe_close_cb_called
static int pipe_close_cb_called
Definition: test-pipe-server-close.c:33
pipe_client
static uv_pipe_t pipe_client
Definition: test-pipe-server-close.c:29
uv.h
MAKE_VALGRIND_HAPPY
#define MAKE_VALGRIND_HAPPY()
Definition: task.h:229
fix_build_deps.r
r
Definition: fix_build_deps.py:491
uv_pipe_s
Definition: uv.h:757
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_loop_s
Definition: uv.h:1767
uv_pipe_bind
UV_EXTERN int uv_pipe_bind(uv_pipe_t *handle, const char *name)
Definition: unix/pipe.c:43
pipe_server_connection_cb
static void pipe_server_connection_cb(uv_stream_t *handle, int status)
Definition: test-pipe-server-close.c:55
errno.h


grpc
Author(s):
autogenerated on Fri May 16 2025 03:00:26