2011-09-26 09:42:41 -07:00
|
|
|
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "uv.h"
|
|
|
|
#include "task.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
static uv_pipe_t channel;
|
2011-09-30 09:11:51 -07:00
|
|
|
static uv_tcp_t tcp_server;
|
2014-07-29 16:08:01 +02:00
|
|
|
static uv_tcp_t tcp_server2;
|
2012-03-08 12:02:50 -08:00
|
|
|
static uv_tcp_t tcp_connection;
|
2011-09-26 09:42:41 -07:00
|
|
|
|
|
|
|
static int exit_cb_called;
|
2013-12-22 14:45:00 +04:00
|
|
|
static int read_cb_called;
|
2012-03-08 12:02:50 -08:00
|
|
|
static int tcp_write_cb_called;
|
|
|
|
static int tcp_read_cb_called;
|
|
|
|
static int on_pipe_read_called;
|
2011-09-29 17:58:58 -07:00
|
|
|
static int local_conn_accepted;
|
|
|
|
static int remote_conn_accepted;
|
|
|
|
static int tcp_server_listening;
|
2011-09-26 09:42:41 -07:00
|
|
|
static uv_write_t write_req;
|
2019-01-11 14:09:23 +01:00
|
|
|
static uv_write_t write_req2;
|
2012-03-08 12:02:50 -08:00
|
|
|
static uv_write_t conn_notify_req;
|
|
|
|
static int close_cb_called;
|
|
|
|
static int connection_accepted;
|
|
|
|
static int tcp_conn_read_cb_called;
|
|
|
|
static int tcp_conn_write_cb_called;
|
2019-01-16 16:14:30 +01:00
|
|
|
static int send_zero_write;
|
2011-09-26 09:42:41 -07:00
|
|
|
|
2011-09-29 17:58:58 -07:00
|
|
|
typedef struct {
|
|
|
|
uv_connect_t conn_req;
|
2012-03-08 12:02:50 -08:00
|
|
|
uv_write_t tcp_write_req;
|
2011-09-29 17:58:58 -07:00
|
|
|
uv_tcp_t conn;
|
|
|
|
} tcp_conn;
|
|
|
|
|
|
|
|
#define CONN_COUNT 100
|
2015-09-02 21:41:27 +02:00
|
|
|
#define BACKLOG 128
|
2011-09-29 17:58:58 -07:00
|
|
|
|
|
|
|
|
|
|
|
static void close_server_conn_cb(uv_handle_t* handle) {
|
|
|
|
free(handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-08 12:02:50 -08:00
|
|
|
static void on_connection(uv_stream_t* server, int status) {
|
2011-09-29 17:58:58 -07:00
|
|
|
uv_tcp_t* conn;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if (!local_conn_accepted) {
|
|
|
|
/* Accept the connection and close it. Also and close the server. */
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(status);
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_PTR_EQ(&tcp_server, server);
|
2011-09-29 17:58:58 -07:00
|
|
|
|
|
|
|
conn = malloc(sizeof(*conn));
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_NOT_NULL(conn);
|
2011-09-29 17:58:58 -07:00
|
|
|
r = uv_tcp_init(server->loop, conn);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-09-29 17:58:58 -07:00
|
|
|
|
|
|
|
r = uv_accept(server, (uv_stream_t*)conn);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-09-29 17:58:58 -07:00
|
|
|
|
|
|
|
uv_close((uv_handle_t*)conn, close_server_conn_cb);
|
|
|
|
uv_close((uv_handle_t*)server, NULL);
|
|
|
|
local_conn_accepted = 1;
|
|
|
|
}
|
2011-09-30 09:11:51 -07:00
|
|
|
}
|
|
|
|
|
2011-09-26 09:42:41 -07:00
|
|
|
|
2013-08-22 18:30:10 +02:00
|
|
|
static void exit_cb(uv_process_t* process,
|
|
|
|
int64_t exit_status,
|
|
|
|
int term_signal) {
|
2011-09-26 09:42:41 -07:00
|
|
|
printf("exit_cb\n");
|
|
|
|
exit_cb_called++;
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(exit_status);
|
|
|
|
ASSERT_OK(term_signal);
|
2011-09-26 09:42:41 -07:00
|
|
|
uv_close((uv_handle_t*)process, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-31 15:48:23 +02:00
|
|
|
static void on_alloc(uv_handle_t* handle,
|
|
|
|
size_t suggested_size,
|
|
|
|
uv_buf_t* buf) {
|
|
|
|
buf->base = malloc(suggested_size);
|
|
|
|
buf->len = suggested_size;
|
2011-09-26 09:42:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-29 17:58:58 -07:00
|
|
|
static void close_client_conn_cb(uv_handle_t* handle) {
|
|
|
|
tcp_conn* p = (tcp_conn*)handle->data;
|
|
|
|
free(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void connect_cb(uv_connect_t* req, int status) {
|
|
|
|
uv_close((uv_handle_t*)req->handle, close_client_conn_cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-06 20:01:22 +01:00
|
|
|
static void make_many_connections(void) {
|
2011-09-29 17:58:58 -07:00
|
|
|
tcp_conn* conn;
|
|
|
|
struct sockaddr_in addr;
|
|
|
|
int r, i;
|
|
|
|
|
|
|
|
for (i = 0; i < CONN_COUNT; i++) {
|
|
|
|
conn = malloc(sizeof(*conn));
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_NOT_NULL(conn);
|
2011-09-29 17:58:58 -07:00
|
|
|
|
|
|
|
r = uv_tcp_init(uv_default_loop(), &conn->conn);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
|
|
|
ASSERT_OK(uv_ip4_addr("127.0.0.1", TEST_PORT, &addr));
|
2011-09-29 17:58:58 -07:00
|
|
|
|
2013-08-31 03:00:34 +02:00
|
|
|
r = uv_tcp_connect(&conn->conn_req,
|
|
|
|
(uv_tcp_t*) &conn->conn,
|
2013-09-03 23:12:07 +02:00
|
|
|
(const struct sockaddr*) &addr,
|
2013-08-31 03:00:34 +02:00
|
|
|
connect_cb);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-09-29 17:58:58 -07:00
|
|
|
|
|
|
|
conn->conn.data = conn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-22 14:45:00 +04:00
|
|
|
static void on_read(uv_stream_t* handle,
|
2013-08-31 02:15:08 +02:00
|
|
|
ssize_t nread,
|
2013-12-22 14:45:00 +04:00
|
|
|
const uv_buf_t* buf) {
|
2011-09-26 09:42:41 -07:00
|
|
|
int r;
|
2013-12-22 14:45:00 +04:00
|
|
|
uv_pipe_t* pipe;
|
|
|
|
uv_handle_type pending;
|
2011-09-26 09:42:41 -07:00
|
|
|
uv_buf_t outbuf;
|
|
|
|
|
2013-12-22 14:45:00 +04:00
|
|
|
pipe = (uv_pipe_t*) handle;
|
|
|
|
|
2011-09-30 09:11:51 -07:00
|
|
|
if (nread == 0) {
|
|
|
|
/* Everything OK, but nothing read. */
|
2013-08-31 02:15:08 +02:00
|
|
|
free(buf->base);
|
2011-09-30 09:11:51 -07:00
|
|
|
return;
|
2011-09-26 09:42:41 -07:00
|
|
|
}
|
2011-09-30 09:11:51 -07:00
|
|
|
|
2011-10-03 14:49:21 -07:00
|
|
|
if (nread < 0) {
|
2013-06-06 23:10:50 +02:00
|
|
|
if (nread == UV_EOF) {
|
2013-08-31 02:15:08 +02:00
|
|
|
free(buf->base);
|
2011-10-03 14:49:21 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-06-06 23:10:50 +02:00
|
|
|
printf("error recving on channel: %s\n", uv_strerror(nread));
|
2011-10-03 14:49:21 -07:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2011-09-29 17:58:58 -07:00
|
|
|
fprintf(stderr, "got %d bytes\n", (int)nread);
|
|
|
|
|
2013-12-22 14:45:00 +04:00
|
|
|
pending = uv_pipe_pending_type(pipe);
|
2011-09-29 17:58:58 -07:00
|
|
|
if (!tcp_server_listening) {
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_EQ(1, uv_pipe_pending_count(pipe));
|
|
|
|
ASSERT_GT(nread, 0);
|
|
|
|
ASSERT_NOT_NULL(buf->base);
|
|
|
|
ASSERT_NE(pending, UV_UNKNOWN_HANDLE);
|
2013-12-22 14:45:00 +04:00
|
|
|
read_cb_called++;
|
2011-09-30 09:11:51 -07:00
|
|
|
|
2011-09-29 17:58:58 -07:00
|
|
|
/* Accept the pending TCP server, and start listening on it. */
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_EQ(pending, UV_TCP);
|
2011-09-29 17:58:58 -07:00
|
|
|
r = uv_tcp_init(uv_default_loop(), &tcp_server);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-09-30 09:11:51 -07:00
|
|
|
|
2011-09-29 17:58:58 -07:00
|
|
|
r = uv_accept((uv_stream_t*)pipe, (uv_stream_t*)&tcp_server);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-09-30 09:11:51 -07:00
|
|
|
|
2015-09-02 21:41:27 +02:00
|
|
|
r = uv_listen((uv_stream_t*)&tcp_server, BACKLOG, on_connection);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-09-30 09:11:51 -07:00
|
|
|
|
2011-09-29 17:58:58 -07:00
|
|
|
tcp_server_listening = 1;
|
2011-09-30 09:11:51 -07:00
|
|
|
|
2011-09-29 17:58:58 -07:00
|
|
|
/* Make sure that the expected data is correctly multiplexed. */
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_MEM_EQ("hello\n", buf->base, nread);
|
2011-09-29 17:58:58 -07:00
|
|
|
|
2021-06-10 13:12:07 -04:00
|
|
|
outbuf = uv_buf_init("foobar\n", 7);
|
2011-09-29 17:58:58 -07:00
|
|
|
r = uv_write(&write_req, (uv_stream_t*)pipe, &outbuf, 1, NULL);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-09-29 17:58:58 -07:00
|
|
|
|
|
|
|
/* Create a bunch of connections to get both servers to accept. */
|
|
|
|
make_many_connections();
|
2013-08-31 02:15:08 +02:00
|
|
|
} else if (memcmp("accepted_connection\n", buf->base, nread) == 0) {
|
2011-09-29 17:58:58 -07:00
|
|
|
/* Remote server has accepted a connection. Close the channel. */
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_pipe_pending_count(pipe));
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_EQ(pending, UV_UNKNOWN_HANDLE);
|
2011-09-29 17:58:58 -07:00
|
|
|
remote_conn_accepted = 1;
|
|
|
|
uv_close((uv_handle_t*)&channel, NULL);
|
|
|
|
}
|
2011-09-30 09:11:51 -07:00
|
|
|
|
2013-08-31 02:15:08 +02:00
|
|
|
free(buf->base);
|
2011-09-26 09:42:41 -07:00
|
|
|
}
|
|
|
|
|
2014-07-29 16:08:01 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
static void on_read_listen_after_bound_twice(uv_stream_t* handle,
|
|
|
|
ssize_t nread,
|
|
|
|
const uv_buf_t* buf) {
|
|
|
|
int r;
|
|
|
|
uv_pipe_t* pipe;
|
|
|
|
uv_handle_type pending;
|
|
|
|
|
|
|
|
pipe = (uv_pipe_t*) handle;
|
|
|
|
|
|
|
|
if (nread == 0) {
|
|
|
|
/* Everything OK, but nothing read. */
|
|
|
|
free(buf->base);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nread < 0) {
|
|
|
|
if (nread == UV_EOF) {
|
|
|
|
free(buf->base);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("error recving on channel: %s\n", uv_strerror(nread));
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "got %d bytes\n", (int)nread);
|
|
|
|
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_GT(uv_pipe_pending_count(pipe), 0);
|
2014-07-29 16:08:01 +02:00
|
|
|
pending = uv_pipe_pending_type(pipe);
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_GT(nread, 0);
|
|
|
|
ASSERT_NOT_NULL(buf->base);
|
|
|
|
ASSERT_NE(pending, UV_UNKNOWN_HANDLE);
|
2014-07-29 16:08:01 +02:00
|
|
|
read_cb_called++;
|
|
|
|
|
|
|
|
if (read_cb_called == 1) {
|
|
|
|
/* Accept the first TCP server, and start listening on it. */
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_EQ(pending, UV_TCP);
|
2014-07-29 16:08:01 +02:00
|
|
|
r = uv_tcp_init(uv_default_loop(), &tcp_server);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2015-09-02 21:41:27 +02:00
|
|
|
|
2014-07-29 16:08:01 +02:00
|
|
|
r = uv_accept((uv_stream_t*)pipe, (uv_stream_t*)&tcp_server);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2015-09-02 21:41:27 +02:00
|
|
|
|
|
|
|
r = uv_listen((uv_stream_t*)&tcp_server, BACKLOG, on_connection);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2014-07-29 16:08:01 +02:00
|
|
|
} else if (read_cb_called == 2) {
|
|
|
|
/* Accept the second TCP server, and start listening on it. */
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_EQ(pending, UV_TCP);
|
2014-07-29 16:08:01 +02:00
|
|
|
r = uv_tcp_init(uv_default_loop(), &tcp_server2);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2015-09-02 21:41:27 +02:00
|
|
|
|
2014-07-29 16:08:01 +02:00
|
|
|
r = uv_accept((uv_stream_t*)pipe, (uv_stream_t*)&tcp_server2);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2015-09-02 21:41:27 +02:00
|
|
|
|
|
|
|
r = uv_listen((uv_stream_t*)&tcp_server2, BACKLOG, on_connection);
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_EQ(r, UV_EADDRINUSE);
|
2014-07-29 16:08:01 +02:00
|
|
|
|
|
|
|
uv_close((uv_handle_t*)&tcp_server, NULL);
|
|
|
|
uv_close((uv_handle_t*)&tcp_server2, NULL);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_pipe_pending_count(pipe));
|
2014-07-29 16:08:01 +02:00
|
|
|
uv_close((uv_handle_t*)&channel, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(buf->base);
|
|
|
|
}
|
|
|
|
#endif
|
2011-09-26 09:42:41 -07:00
|
|
|
|
2012-03-09 03:16:08 +01:00
|
|
|
void spawn_helper(uv_pipe_t* channel,
|
|
|
|
uv_process_t* process,
|
|
|
|
const char* helper) {
|
2011-09-26 09:42:41 -07:00
|
|
|
uv_process_options_t options;
|
2012-03-09 03:16:08 +01:00
|
|
|
size_t exepath_size;
|
|
|
|
char exepath[1024];
|
|
|
|
char* args[3];
|
|
|
|
int r;
|
2018-05-20 18:59:08 -07:00
|
|
|
uv_stdio_container_t stdio[3];
|
2011-09-26 09:42:41 -07:00
|
|
|
|
2012-03-09 03:16:08 +01:00
|
|
|
r = uv_pipe_init(uv_default_loop(), channel, 1);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
|
|
|
ASSERT_NE(0, channel->ipc);
|
2011-09-26 09:42:41 -07:00
|
|
|
|
2012-03-09 03:16:08 +01:00
|
|
|
exepath_size = sizeof(exepath);
|
2011-09-26 09:42:41 -07:00
|
|
|
r = uv_exepath(exepath, &exepath_size);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-09 03:16:08 +01:00
|
|
|
|
2011-09-26 09:42:41 -07:00
|
|
|
exepath[exepath_size] = '\0';
|
|
|
|
args[0] = exepath;
|
2011-10-25 13:07:29 -07:00
|
|
|
args[1] = (char*)helper;
|
2011-09-26 09:42:41 -07:00
|
|
|
args[2] = NULL;
|
2012-03-09 03:16:08 +01:00
|
|
|
|
|
|
|
memset(&options, 0, sizeof(options));
|
2011-09-26 09:42:41 -07:00
|
|
|
options.file = exepath;
|
|
|
|
options.args = args;
|
|
|
|
options.exit_cb = exit_cb;
|
2012-05-15 11:26:16 -07:00
|
|
|
options.stdio = stdio;
|
2018-05-20 18:59:08 -07:00
|
|
|
options.stdio_count = ARRAY_SIZE(stdio);
|
|
|
|
|
|
|
|
stdio[0].flags = UV_CREATE_PIPE | UV_READABLE_PIPE | UV_WRITABLE_PIPE;
|
|
|
|
stdio[0].data.stream = (uv_stream_t*) channel;
|
|
|
|
stdio[1].flags = UV_INHERIT_FD;
|
|
|
|
stdio[1].data.fd = 1;
|
|
|
|
stdio[2].flags = UV_INHERIT_FD;
|
|
|
|
stdio[2].data.fd = 2;
|
2011-09-26 09:42:41 -07:00
|
|
|
|
2013-09-01 08:20:15 +02:00
|
|
|
r = uv_spawn(uv_default_loop(), process, &options);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-09 03:16:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-08 12:02:50 -08:00
|
|
|
static void on_tcp_write(uv_write_t* req, int status) {
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(status);
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_PTR_EQ(req->handle, &tcp_connection);
|
2012-03-08 12:02:50 -08:00
|
|
|
tcp_write_cb_called++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-31 15:48:23 +02:00
|
|
|
static void on_read_alloc(uv_handle_t* handle,
|
|
|
|
size_t suggested_size,
|
|
|
|
uv_buf_t* buf) {
|
|
|
|
buf->base = malloc(suggested_size);
|
|
|
|
buf->len = suggested_size;
|
2012-03-08 12:02:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-31 02:15:08 +02:00
|
|
|
static void on_tcp_read(uv_stream_t* tcp, ssize_t nread, const uv_buf_t* buf) {
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_GT(nread, 0);
|
|
|
|
ASSERT_MEM_EQ("hello again\n", buf->base, nread);
|
|
|
|
ASSERT_PTR_EQ(tcp, &tcp_connection);
|
2013-08-31 02:15:08 +02:00
|
|
|
free(buf->base);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
tcp_read_cb_called++;
|
|
|
|
|
|
|
|
uv_close((uv_handle_t*)tcp, NULL);
|
|
|
|
uv_close((uv_handle_t*)&channel, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-22 14:45:00 +04:00
|
|
|
static void on_read_connection(uv_stream_t* handle,
|
2013-08-31 02:15:08 +02:00
|
|
|
ssize_t nread,
|
2013-12-22 14:45:00 +04:00
|
|
|
const uv_buf_t* buf) {
|
2012-03-08 12:02:50 -08:00
|
|
|
int r;
|
|
|
|
uv_buf_t outbuf;
|
2013-12-22 14:45:00 +04:00
|
|
|
uv_pipe_t* pipe;
|
|
|
|
uv_handle_type pending;
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2013-12-22 14:45:00 +04:00
|
|
|
pipe = (uv_pipe_t*) handle;
|
2012-03-08 12:02:50 -08:00
|
|
|
if (nread == 0) {
|
|
|
|
/* Everything OK, but nothing read. */
|
2013-08-31 02:15:08 +02:00
|
|
|
free(buf->base);
|
2012-03-08 12:02:50 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nread < 0) {
|
2013-06-06 23:10:50 +02:00
|
|
|
if (nread == UV_EOF) {
|
2013-08-31 02:15:08 +02:00
|
|
|
free(buf->base);
|
2012-03-08 12:02:50 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-06-06 23:10:50 +02:00
|
|
|
printf("error recving on channel: %s\n", uv_strerror(nread));
|
2012-03-08 12:02:50 -08:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "got %d bytes\n", (int)nread);
|
|
|
|
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_EQ(1, uv_pipe_pending_count(pipe));
|
2013-12-22 14:45:00 +04:00
|
|
|
pending = uv_pipe_pending_type(pipe);
|
|
|
|
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_GT(nread, 0);
|
|
|
|
ASSERT_NOT_NULL(buf->base);
|
|
|
|
ASSERT_NE(pending, UV_UNKNOWN_HANDLE);
|
2013-12-22 14:45:00 +04:00
|
|
|
read_cb_called++;
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
/* Accept the pending TCP connection */
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_EQ(pending, UV_TCP);
|
2012-03-08 12:02:50 -08:00
|
|
|
r = uv_tcp_init(uv_default_loop(), &tcp_connection);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2013-12-22 14:45:00 +04:00
|
|
|
r = uv_accept(handle, (uv_stream_t*)&tcp_connection);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
/* Make sure that the expected data is correctly multiplexed. */
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_MEM_EQ("hello\n", buf->base, nread);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
/* Write/read to/from the connection */
|
|
|
|
outbuf = uv_buf_init("world\n", 6);
|
|
|
|
r = uv_write(&write_req, (uv_stream_t*)&tcp_connection, &outbuf, 1,
|
|
|
|
on_tcp_write);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
r = uv_read_start((uv_stream_t*)&tcp_connection, on_read_alloc, on_tcp_read);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2013-08-31 02:15:08 +02:00
|
|
|
free(buf->base);
|
2012-03-08 12:02:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-01-16 16:14:30 +01:00
|
|
|
static void on_read_send_zero(uv_stream_t* handle,
|
|
|
|
ssize_t nread,
|
|
|
|
const uv_buf_t* buf) {
|
|
|
|
ASSERT(nread == 0 || nread == UV_EOF);
|
|
|
|
free(buf->base);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-22 14:45:00 +04:00
|
|
|
static int run_ipc_test(const char* helper, uv_read_cb read_cb) {
|
2012-03-09 03:16:08 +01:00
|
|
|
uv_process_t process;
|
|
|
|
int r;
|
2011-09-26 09:42:41 -07:00
|
|
|
|
2012-03-09 03:16:08 +01:00
|
|
|
spawn_helper(&channel, &process, helper);
|
2013-12-22 14:45:00 +04:00
|
|
|
uv_read_start((uv_stream_t*)&channel, on_alloc, read_cb);
|
2011-09-26 09:42:41 -07:00
|
|
|
|
2013-01-16 23:20:03 +01:00
|
|
|
r = uv_run(uv_default_loop(), UV_RUN_DEFAULT);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-09-26 09:42:41 -07:00
|
|
|
|
2023-03-12 07:59:00 -06:00
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
2012-03-08 12:02:50 -08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_IMPL(ipc_listen_before_write) {
|
2017-04-10 22:13:48 -04:00
|
|
|
#if defined(NO_SEND_HANDLE_ON_PIPE)
|
|
|
|
RETURN_SKIP(NO_SEND_HANDLE_ON_PIPE);
|
|
|
|
#endif
|
2012-03-08 12:02:50 -08:00
|
|
|
int r = run_ipc_test("ipc_helper_listen_before_write", on_read);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_EQ(1, local_conn_accepted);
|
|
|
|
ASSERT_EQ(1, remote_conn_accepted);
|
|
|
|
ASSERT_EQ(1, read_cb_called);
|
|
|
|
ASSERT_EQ(1, exit_cb_called);
|
2012-03-08 12:02:50 -08:00
|
|
|
return r;
|
2011-09-26 09:42:41 -07:00
|
|
|
}
|
2011-10-25 13:07:29 -07:00
|
|
|
|
|
|
|
|
2012-03-08 12:02:50 -08:00
|
|
|
TEST_IMPL(ipc_listen_after_write) {
|
2017-04-10 22:13:48 -04:00
|
|
|
#if defined(NO_SEND_HANDLE_ON_PIPE)
|
|
|
|
RETURN_SKIP(NO_SEND_HANDLE_ON_PIPE);
|
|
|
|
#endif
|
2012-03-08 12:02:50 -08:00
|
|
|
int r = run_ipc_test("ipc_helper_listen_after_write", on_read);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_EQ(1, local_conn_accepted);
|
|
|
|
ASSERT_EQ(1, remote_conn_accepted);
|
|
|
|
ASSERT_EQ(1, read_cb_called);
|
|
|
|
ASSERT_EQ(1, exit_cb_called);
|
2012-03-08 12:02:50 -08:00
|
|
|
return r;
|
2011-10-25 13:07:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-08 12:02:50 -08:00
|
|
|
TEST_IMPL(ipc_tcp_connection) {
|
2017-04-10 22:13:48 -04:00
|
|
|
#if defined(NO_SEND_HANDLE_ON_PIPE)
|
|
|
|
RETURN_SKIP(NO_SEND_HANDLE_ON_PIPE);
|
|
|
|
#endif
|
2012-03-08 12:02:50 -08:00
|
|
|
int r = run_ipc_test("ipc_helper_tcp_connection", on_read_connection);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_EQ(1, read_cb_called);
|
|
|
|
ASSERT_EQ(1, tcp_write_cb_called);
|
|
|
|
ASSERT_EQ(1, tcp_read_cb_called);
|
|
|
|
ASSERT_EQ(1, exit_cb_called);
|
2012-03-08 12:02:50 -08:00
|
|
|
return r;
|
2011-10-25 13:07:29 -07:00
|
|
|
}
|
2011-11-01 01:13:13 -07:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
TEST_IMPL(listen_with_simultaneous_accepts) {
|
|
|
|
uv_tcp_t server;
|
|
|
|
int r;
|
2013-08-31 03:00:34 +02:00
|
|
|
struct sockaddr_in addr;
|
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_ip4_addr("0.0.0.0", TEST_PORT, &addr));
|
2011-11-01 01:13:13 -07:00
|
|
|
|
|
|
|
r = uv_tcp_init(uv_default_loop(), &server);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-11-01 01:13:13 -07:00
|
|
|
|
2013-03-20 01:14:10 +04:00
|
|
|
r = uv_tcp_bind(&server, (const struct sockaddr*) &addr, 0);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-11-01 01:13:13 -07:00
|
|
|
|
|
|
|
r = uv_tcp_simultaneous_accepts(&server, 1);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-11-01 01:13:13 -07:00
|
|
|
|
|
|
|
r = uv_listen((uv_stream_t*)&server, SOMAXCONN, NULL);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
|
|
|
ASSERT_EQ(32, server.reqs_pending);
|
2011-11-01 01:13:13 -07:00
|
|
|
|
2023-03-12 07:59:00 -06:00
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
2011-11-01 01:13:13 -07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_IMPL(listen_no_simultaneous_accepts) {
|
|
|
|
uv_tcp_t server;
|
|
|
|
int r;
|
2013-08-31 03:00:34 +02:00
|
|
|
struct sockaddr_in addr;
|
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_ip4_addr("0.0.0.0", TEST_PORT, &addr));
|
2011-11-01 01:13:13 -07:00
|
|
|
|
|
|
|
r = uv_tcp_init(uv_default_loop(), &server);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-11-01 01:13:13 -07:00
|
|
|
|
2013-03-20 01:14:10 +04:00
|
|
|
r = uv_tcp_bind(&server, (const struct sockaddr*) &addr, 0);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-11-01 01:13:13 -07:00
|
|
|
|
|
|
|
r = uv_tcp_simultaneous_accepts(&server, 0);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-11-01 01:13:13 -07:00
|
|
|
|
|
|
|
r = uv_listen((uv_stream_t*)&server, SOMAXCONN, NULL);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
|
|
|
ASSERT_EQ(1, server.reqs_pending);
|
2011-11-01 01:13:13 -07:00
|
|
|
|
2023-03-12 07:59:00 -06:00
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
2011-11-01 01:13:13 -07:00
|
|
|
return 0;
|
|
|
|
}
|
2014-07-29 16:08:01 +02:00
|
|
|
|
|
|
|
TEST_IMPL(ipc_listen_after_bind_twice) {
|
2017-04-10 22:13:48 -04:00
|
|
|
#if defined(NO_SEND_HANDLE_ON_PIPE)
|
|
|
|
RETURN_SKIP(NO_SEND_HANDLE_ON_PIPE);
|
|
|
|
#endif
|
2014-07-29 16:08:01 +02:00
|
|
|
int r = run_ipc_test("ipc_helper_bind_twice", on_read_listen_after_bound_twice);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_EQ(2, read_cb_called);
|
|
|
|
ASSERT_EQ(1, exit_cb_called);
|
2014-07-29 16:08:01 +02:00
|
|
|
return r;
|
|
|
|
}
|
2011-11-03 16:17:08 -07:00
|
|
|
#endif
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2019-01-16 16:14:30 +01:00
|
|
|
TEST_IMPL(ipc_send_zero) {
|
|
|
|
int r;
|
|
|
|
r = run_ipc_test("ipc_helper_send_zero", on_read_send_zero);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2019-01-16 16:14:30 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
/* Everything here runs in a child process. */
|
|
|
|
|
2013-01-06 21:50:00 +01:00
|
|
|
static tcp_conn conn;
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
|
|
|
|
static void close_cb(uv_handle_t* handle) {
|
|
|
|
close_cb_called++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void conn_notify_write_cb(uv_write_t* req, int status) {
|
|
|
|
uv_close((uv_handle_t*)&tcp_server, close_cb);
|
|
|
|
uv_close((uv_handle_t*)&channel, close_cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void tcp_connection_write_cb(uv_write_t* req, int status) {
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_PTR_EQ(&conn.conn, req->handle);
|
2012-03-08 12:02:50 -08:00
|
|
|
uv_close((uv_handle_t*)req->handle, close_cb);
|
|
|
|
uv_close((uv_handle_t*)&channel, close_cb);
|
|
|
|
uv_close((uv_handle_t*)&tcp_server, close_cb);
|
|
|
|
tcp_conn_write_cb_called++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-01-16 16:14:30 +01:00
|
|
|
static void send_zero_write_cb(uv_write_t* req, int status) {
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(status);
|
2019-01-16 16:14:30 +01:00
|
|
|
send_zero_write++;
|
|
|
|
}
|
|
|
|
|
2013-08-31 02:15:08 +02:00
|
|
|
static void on_tcp_child_process_read(uv_stream_t* tcp,
|
|
|
|
ssize_t nread,
|
|
|
|
const uv_buf_t* buf) {
|
2012-03-08 12:02:50 -08:00
|
|
|
uv_buf_t outbuf;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if (nread < 0) {
|
2013-06-06 23:10:50 +02:00
|
|
|
if (nread == UV_EOF) {
|
2013-08-31 02:15:08 +02:00
|
|
|
free(buf->base);
|
2012-03-08 12:02:50 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-06-06 23:10:50 +02:00
|
|
|
printf("error recving on tcp connection: %s\n", uv_strerror(nread));
|
2012-03-08 12:02:50 -08:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_GT(nread, 0);
|
|
|
|
ASSERT_MEM_EQ("world\n", buf->base, nread);
|
2012-03-08 12:02:50 -08:00
|
|
|
on_pipe_read_called++;
|
2013-08-31 02:15:08 +02:00
|
|
|
free(buf->base);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
/* Write to the socket */
|
|
|
|
outbuf = uv_buf_init("hello again\n", 12);
|
|
|
|
r = uv_write(&conn.tcp_write_req, tcp, &outbuf, 1, tcp_connection_write_cb);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
tcp_conn_read_cb_called++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void connect_child_process_cb(uv_connect_t* req, int status) {
|
|
|
|
int r;
|
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(status);
|
2012-03-08 12:02:50 -08:00
|
|
|
r = uv_read_start(req->handle, on_read_alloc, on_tcp_child_process_read);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void ipc_on_connection(uv_stream_t* server, int status) {
|
|
|
|
int r;
|
|
|
|
uv_buf_t buf;
|
|
|
|
|
|
|
|
if (!connection_accepted) {
|
|
|
|
/*
|
|
|
|
* Accept the connection and close it. Also let the other
|
|
|
|
* side know.
|
|
|
|
*/
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(status);
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_PTR_EQ(&tcp_server, server);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
r = uv_tcp_init(server->loop, &conn.conn);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
r = uv_accept(server, (uv_stream_t*)&conn.conn);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
uv_close((uv_handle_t*)&conn.conn, close_cb);
|
|
|
|
|
|
|
|
buf = uv_buf_init("accepted_connection\n", 20);
|
|
|
|
r = uv_write2(&conn_notify_req, (uv_stream_t*)&channel, &buf, 1,
|
|
|
|
NULL, conn_notify_write_cb);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
connection_accepted = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-09-20 16:53:02 +08:00
|
|
|
static void close_and_free_cb(uv_handle_t* handle) {
|
|
|
|
close_cb_called++;
|
|
|
|
free(handle);
|
|
|
|
}
|
|
|
|
|
2012-03-08 12:02:50 -08:00
|
|
|
static void ipc_on_connection_tcp_conn(uv_stream_t* server, int status) {
|
|
|
|
int r;
|
|
|
|
uv_buf_t buf;
|
|
|
|
uv_tcp_t* conn;
|
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(status);
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_PTR_EQ(&tcp_server, server);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
conn = malloc(sizeof(*conn));
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_NOT_NULL(conn);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
r = uv_tcp_init(server->loop, conn);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
r = uv_accept(server, (uv_stream_t*)conn);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
/* Send the accepted connection to the other process */
|
|
|
|
buf = uv_buf_init("hello\n", 6);
|
|
|
|
r = uv_write2(&conn_notify_req, (uv_stream_t*)&channel, &buf, 1,
|
|
|
|
(uv_stream_t*)conn, NULL);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2013-08-31 02:15:08 +02:00
|
|
|
r = uv_read_start((uv_stream_t*) conn,
|
|
|
|
on_read_alloc,
|
|
|
|
on_tcp_child_process_read);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2020-09-20 16:53:02 +08:00
|
|
|
uv_close((uv_handle_t*)conn, close_and_free_cb);
|
2012-03-08 12:02:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int ipc_helper(int listen_after_write) {
|
|
|
|
/*
|
|
|
|
* This is launched from test-ipc.c. stdin is a duplex channel that we
|
|
|
|
* over which a handle will be transmitted.
|
|
|
|
*/
|
2013-08-31 03:00:34 +02:00
|
|
|
struct sockaddr_in addr;
|
2012-03-08 12:02:50 -08:00
|
|
|
int r;
|
|
|
|
uv_buf_t buf;
|
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_ip4_addr("0.0.0.0", TEST_PORT, &addr));
|
2013-08-31 03:00:34 +02:00
|
|
|
|
2012-03-08 12:02:50 -08:00
|
|
|
r = uv_pipe_init(uv_default_loop(), &channel, 1);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
uv_pipe_open(&channel, 0);
|
|
|
|
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_EQ(1, uv_is_readable((uv_stream_t*) &channel));
|
|
|
|
ASSERT_EQ(1, uv_is_writable((uv_stream_t*) &channel));
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_is_closing((uv_handle_t*) &channel));
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
r = uv_tcp_init(uv_default_loop(), &tcp_server);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2013-03-20 01:14:10 +04:00
|
|
|
r = uv_tcp_bind(&tcp_server, (const struct sockaddr*) &addr, 0);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
if (!listen_after_write) {
|
2015-09-02 21:41:27 +02:00
|
|
|
r = uv_listen((uv_stream_t*)&tcp_server, BACKLOG, ipc_on_connection);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
buf = uv_buf_init("hello\n", 6);
|
|
|
|
r = uv_write2(&write_req, (uv_stream_t*)&channel, &buf, 1,
|
|
|
|
(uv_stream_t*)&tcp_server, NULL);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
if (listen_after_write) {
|
2015-09-02 21:41:27 +02:00
|
|
|
r = uv_listen((uv_stream_t*)&tcp_server, BACKLOG, ipc_on_connection);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
}
|
|
|
|
|
2018-10-29 12:44:40 +01:00
|
|
|
notify_parent_process();
|
2013-01-16 23:20:03 +01:00
|
|
|
r = uv_run(uv_default_loop(), UV_RUN_DEFAULT);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_EQ(1, connection_accepted);
|
|
|
|
ASSERT_EQ(3, close_cb_called);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2023-03-12 07:59:00 -06:00
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
2012-03-08 12:02:50 -08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-06 20:01:22 +01:00
|
|
|
int ipc_helper_tcp_connection(void) {
|
2012-03-08 12:02:50 -08:00
|
|
|
/*
|
2014-07-29 16:08:01 +02:00
|
|
|
* This is launched from test-ipc.c. stdin is a duplex channel
|
2012-03-08 12:02:50 -08:00
|
|
|
* over which a handle will be transmitted.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int r;
|
|
|
|
struct sockaddr_in addr;
|
|
|
|
|
|
|
|
r = uv_pipe_init(uv_default_loop(), &channel, 1);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
uv_pipe_open(&channel, 0);
|
|
|
|
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_EQ(1, uv_is_readable((uv_stream_t*) &channel));
|
|
|
|
ASSERT_EQ(1, uv_is_writable((uv_stream_t*) &channel));
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_is_closing((uv_handle_t*) &channel));
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
r = uv_tcp_init(uv_default_loop(), &tcp_server);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_ip4_addr("0.0.0.0", TEST_PORT, &addr));
|
2013-08-31 03:00:34 +02:00
|
|
|
|
2013-03-20 01:14:10 +04:00
|
|
|
r = uv_tcp_bind(&tcp_server, (const struct sockaddr*) &addr, 0);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2015-09-02 21:41:27 +02:00
|
|
|
r = uv_listen((uv_stream_t*)&tcp_server, BACKLOG, ipc_on_connection_tcp_conn);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
|
|
|
/* Make a connection to the server */
|
|
|
|
r = uv_tcp_init(uv_default_loop(), &conn.conn);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_ip4_addr("127.0.0.1", TEST_PORT, &addr));
|
2013-08-31 03:00:34 +02:00
|
|
|
|
|
|
|
r = uv_tcp_connect(&conn.conn_req,
|
|
|
|
(uv_tcp_t*) &conn.conn,
|
2013-09-03 23:12:07 +02:00
|
|
|
(const struct sockaddr*) &addr,
|
2013-08-31 03:00:34 +02:00
|
|
|
connect_child_process_cb);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2013-01-16 23:20:03 +01:00
|
|
|
r = uv_run(uv_default_loop(), UV_RUN_DEFAULT);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_EQ(1, tcp_conn_read_cb_called);
|
|
|
|
ASSERT_EQ(1, tcp_conn_write_cb_called);
|
|
|
|
ASSERT_EQ(4, close_cb_called);
|
2012-03-08 12:02:50 -08:00
|
|
|
|
2023-03-12 07:59:00 -06:00
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
2012-03-08 12:02:50 -08:00
|
|
|
return 0;
|
2012-05-09 20:15:05 +07:00
|
|
|
}
|
2014-07-29 16:08:01 +02:00
|
|
|
|
|
|
|
int ipc_helper_bind_twice(void) {
|
|
|
|
/*
|
|
|
|
* This is launched from test-ipc.c. stdin is a duplex channel
|
|
|
|
* over which two handles will be transmitted.
|
|
|
|
*/
|
|
|
|
struct sockaddr_in addr;
|
|
|
|
int r;
|
|
|
|
uv_buf_t buf;
|
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_ip4_addr("0.0.0.0", TEST_PORT, &addr));
|
2014-07-29 16:08:01 +02:00
|
|
|
|
|
|
|
r = uv_pipe_init(uv_default_loop(), &channel, 1);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2014-07-29 16:08:01 +02:00
|
|
|
|
|
|
|
uv_pipe_open(&channel, 0);
|
|
|
|
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_EQ(1, uv_is_readable((uv_stream_t*) &channel));
|
|
|
|
ASSERT_EQ(1, uv_is_writable((uv_stream_t*) &channel));
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_is_closing((uv_handle_t*) &channel));
|
2014-07-29 16:08:01 +02:00
|
|
|
|
|
|
|
buf = uv_buf_init("hello\n", 6);
|
|
|
|
|
|
|
|
r = uv_tcp_init(uv_default_loop(), &tcp_server);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2014-07-29 16:08:01 +02:00
|
|
|
r = uv_tcp_init(uv_default_loop(), &tcp_server2);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2014-07-29 16:08:01 +02:00
|
|
|
|
|
|
|
r = uv_tcp_bind(&tcp_server, (const struct sockaddr*) &addr, 0);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2014-07-29 16:08:01 +02:00
|
|
|
r = uv_tcp_bind(&tcp_server2, (const struct sockaddr*) &addr, 0);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2014-07-29 16:08:01 +02:00
|
|
|
|
|
|
|
r = uv_write2(&write_req, (uv_stream_t*)&channel, &buf, 1,
|
|
|
|
(uv_stream_t*)&tcp_server, NULL);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2014-07-29 16:08:01 +02:00
|
|
|
r = uv_write2(&write_req2, (uv_stream_t*)&channel, &buf, 1,
|
|
|
|
(uv_stream_t*)&tcp_server2, NULL);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2014-07-29 16:08:01 +02:00
|
|
|
|
|
|
|
r = uv_run(uv_default_loop(), UV_RUN_DEFAULT);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2015-09-02 21:41:27 +02:00
|
|
|
|
2023-03-12 07:59:00 -06:00
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
2014-07-29 16:08:01 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2019-01-16 16:14:30 +01:00
|
|
|
|
|
|
|
int ipc_helper_send_zero(void) {
|
|
|
|
int r;
|
|
|
|
uv_buf_t zero_buf;
|
|
|
|
|
|
|
|
zero_buf = uv_buf_init(0, 0);
|
|
|
|
|
|
|
|
r = uv_pipe_init(uv_default_loop(), &channel, 0);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2019-01-16 16:14:30 +01:00
|
|
|
|
|
|
|
uv_pipe_open(&channel, 0);
|
|
|
|
|
test: add a bunch of ASSERT macros
To make the debugging of test issues easier.
The following integer macros are added:
`ASSERT_EQ(a, b)`, `ASSERT_GE(a, b)`, `ASSERT_GT(a, b)`,
`ASSERT_LE(a, b)`, `ASSERT_LT(a, b)` and `ASSERT_NE(a, b)`.
And its corresponding unsigned integer macros:
`ASSERT_UINT64_EQ(a, b)`, `ASSERT_UINT64_GE(a, b)`,
`ASSERT_UINT64_GT(a, b)`, `ASSERT_UINT64_LE(a, b)`,
`ASSERT_UINT64_LT(a, b)` and `ASSERT_UINT64_NE(a, b)`.
Also these macros for `NULL` and pointer checks:
`ASSERT_NULL(a)`, `ASSERT_NOT_NULL(a)`, `ASSERT_PTR_EQ(a, b)` and
`ASSERT_PTR_NE(a, b)`.
And finally these macros for strings and buffers:
`ASSERT_STR_EQ(a, b)`/`ASSERT_STR_NEQ(a, b)` that use the `strcmp()`
call.
`ASSERT_MEM_EQ(a, b)`/`ASSERT_MEM_NEQ(a, b)` and
`ASSERT_MEM_HEX_EQ(a, b)`/`ASSERT_MEM_HEX_NEQ(a, b)` that use the
`memcmp()` call. The former, prints the data in string format and the
latter in hex format.
These macros are used in the following way:
```c
ASSERT_EQ(UV_EINVAL, uv_loop_close(&loop));
```
With a sample output that would be as follows:
```
Assertion failed in test/test-loop-close.c on line 44: `UV_EINVAL == uv_loop_close(&loop)` (-22 == -16)
```
To view multiples examples if their use, the `test-ipc.c` file has been
modified to use these macros.
The `_ISOC99_SOURCE` is defined to support `inttypes.h` in `z/OS`.
PR-URL: https://github.com/libuv/libuv/pull/2739
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
2020-03-14 21:26:47 +01:00
|
|
|
ASSERT_EQ(1, uv_is_readable((uv_stream_t*) &channel));
|
|
|
|
ASSERT_EQ(1, uv_is_writable((uv_stream_t*) &channel));
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_is_closing((uv_handle_t*) &channel));
|
2019-01-16 16:14:30 +01:00
|
|
|
|
|
|
|
r = uv_write(&write_req,
|
|
|
|
(uv_stream_t*)&channel,
|
|
|
|
&zero_buf,
|
|
|
|
1,
|
|
|
|
send_zero_write_cb);
|
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2019-01-16 16:14:30 +01:00
|
|
|
|
|
|
|
r = uv_run(uv_default_loop(), UV_RUN_DEFAULT);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2019-01-16 16:14:30 +01:00
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_EQ(1, send_zero_write);
|
2019-01-16 16:14:30 +01:00
|
|
|
|
2023-03-12 07:59:00 -06:00
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
2019-01-16 16:14:30 +01:00
|
|
|
return 0;
|
2019-02-21 10:43:30 -05:00
|
|
|
}
|