1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00
libuv/test/test-ping-pong.c

271 lines
6.5 KiB
C
Raw Normal View History

/* 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"
2011-04-19 04:26:32 +02:00
#include "task.h"
#include <stdlib.h>
2011-04-05 01:43:17 +02:00
#include <stdio.h>
static int completed_pingers = 0;
2011-04-07 04:51:59 +02:00
#define NUM_PINGS 1000
2011-04-05 01:43:17 +02:00
/* 64 bytes is enough for a pinger */
2011-04-07 04:51:59 +02:00
#define BUFSIZE 10240
static char PING[] = "PING\n";
2011-07-20 12:14:15 -07:00
static int pinger_on_connect_count;
typedef struct {
int pongs;
int state;
2011-07-01 17:54:17 -07:00
union {
uv_tcp_t tcp;
uv_pipe_t pipe;
2011-09-13 21:50:32 -07:00
} stream;
uv_connect_t connect_req;
char read_buffer[BUFSIZE];
2011-04-07 04:51:59 +02:00
} pinger_t;
static void alloc_cb(uv_handle_t* handle, size_t size, uv_buf_t* buf) {
buf->base = malloc(size);
buf->len = size;
}
static void pinger_on_close(uv_handle_t* handle) {
2011-04-07 04:51:59 +02:00
pinger_t* pinger = (pinger_t*)handle->data;
2011-04-01 00:09:06 +02:00
ASSERT(NUM_PINGS == pinger->pongs);
2011-04-07 04:51:59 +02:00
free(pinger);
completed_pingers++;
}
2011-04-07 04:51:59 +02:00
static void pinger_after_write(uv_write_t *req, int status) {
ASSERT(status == 0);
2011-04-07 04:51:59 +02:00
free(req);
}
2011-04-16 14:04:45 -07:00
static void pinger_write_ping(pinger_t* pinger) {
uv_write_t *req;
2011-05-13 07:15:02 -07:00
uv_buf_t buf;
2011-04-19 17:01:45 +02:00
buf = uv_buf_init(PING, sizeof(PING) - 1);
req = malloc(sizeof(*req));
2013-09-11 16:59:55 +02:00
if (uv_write(req,
(uv_stream_t*) &pinger->stream.tcp,
&buf,
1,
pinger_after_write)) {
2011-05-11 19:56:33 -07:00
FATAL("uv_write failed");
2011-04-16 14:04:45 -07:00
}
puts("PING");
2011-04-07 04:51:59 +02:00
}
2011-04-16 14:04:45 -07:00
static void pinger_read_cb(uv_stream_t* stream,
ssize_t nread,
const uv_buf_t* buf) {
2011-08-17 13:23:18 +02:00
ssize_t i;
2011-04-07 04:51:59 +02:00
pinger_t* pinger;
2011-07-01 17:54:17 -07:00
pinger = (pinger_t*)stream->data;
2011-05-03 02:35:11 +02:00
if (nread < 0) {
ASSERT(nread == UV_EOF);
2011-04-16 14:04:45 -07:00
puts("got EOF");
free(buf->base);
2011-05-03 02:35:11 +02:00
2011-09-13 21:50:32 -07:00
uv_close((uv_handle_t*)(&pinger->stream.tcp), pinger_on_close);
2011-05-03 02:35:11 +02:00
return;
}
/* Now we count the pings */
for (i = 0; i < nread; i++) {
ASSERT(buf->base[i] == PING[pinger->state]);
2011-04-07 04:51:59 +02:00
pinger->state = (pinger->state + 1) % (sizeof(PING) - 1);
2012-09-30 23:35:22 +02:00
if (pinger->state != 0)
continue;
printf("PONG %d\n", pinger->pongs);
pinger->pongs++;
if (pinger->pongs < NUM_PINGS) {
pinger_write_ping(pinger);
} else {
uv_close((uv_handle_t*)(&pinger->stream.tcp), pinger_on_close);
break;
}
}
2012-09-30 23:35:22 +02:00
free(buf->base);
}
static void pinger_on_connect(uv_connect_t *req, int status) {
2011-04-07 04:51:59 +02:00
pinger_t *pinger = (pinger_t*)req->handle->data;
2011-07-20 12:14:15 -07:00
pinger_on_connect_count++;
ASSERT(status == 0);
2011-04-05 01:43:17 +02:00
ASSERT(1 == uv_is_readable(req->handle));
ASSERT(1 == uv_is_writable(req->handle));
ASSERT(0 == uv_is_closing((uv_handle_t *) req->handle));
2012-02-08 12:01:33 -08:00
2011-04-07 04:51:59 +02:00
pinger_write_ping(pinger);
2011-06-30 17:39:27 -07:00
uv_read_start((uv_stream_t*)(req->handle), alloc_cb, pinger_read_cb);
2011-04-07 04:51:59 +02:00
}
2011-07-01 17:54:17 -07:00
/* same ping-pong test, but using IPv6 connection */
static void tcp_pinger_v6_new(void) {
2011-04-16 14:04:45 -07:00
int r;
struct sockaddr_in6 server_addr;
2011-04-07 04:51:59 +02:00
pinger_t *pinger;
ASSERT(0 ==uv_ip6_addr("::1", TEST_PORT, &server_addr));
pinger = malloc(sizeof(*pinger));
ASSERT(pinger != NULL);
2011-04-07 04:51:59 +02:00
pinger->state = 0;
pinger->pongs = 0;
2011-11-30 11:26:52 +07:00
/* Try to connect to the server and do NUM_PINGS ping-pongs. */
2011-09-13 21:50:32 -07:00
r = uv_tcp_init(uv_default_loop(), &pinger->stream.tcp);
pinger->stream.tcp.data = pinger;
ASSERT(!r);
2011-04-07 04:51:59 +02:00
/* We are never doing multiple reads/connects at a time anyway. */
/* so these handles can be pre-initialized. */
r = uv_tcp_connect(&pinger->connect_req,
&pinger->stream.tcp,
(const struct sockaddr*) &server_addr,
pinger_on_connect);
ASSERT(!r);
2011-07-20 12:14:15 -07:00
/* Synchronous connect callbacks are not allowed. */
ASSERT(pinger_on_connect_count == 0);
}
static void tcp_pinger_new(void) {
2011-07-01 17:54:17 -07:00
int r;
struct sockaddr_in server_addr;
2011-07-01 17:54:17 -07:00
pinger_t *pinger;
ASSERT(0 == uv_ip4_addr("127.0.0.1", TEST_PORT, &server_addr));
pinger = malloc(sizeof(*pinger));
ASSERT(pinger != NULL);
2011-07-01 17:54:17 -07:00
pinger->state = 0;
pinger->pongs = 0;
2011-11-30 11:26:52 +07:00
/* Try to connect to the server and do NUM_PINGS ping-pongs. */
2011-09-13 21:50:32 -07:00
r = uv_tcp_init(uv_default_loop(), &pinger->stream.tcp);
pinger->stream.tcp.data = pinger;
2011-07-01 17:54:17 -07:00
ASSERT(!r);
2011-07-01 17:54:17 -07:00
/* We are never doing multiple reads/connects at a time anyway. */
/* so these handles can be pre-initialized. */
r = uv_tcp_connect(&pinger->connect_req,
&pinger->stream.tcp,
(const struct sockaddr*) &server_addr,
pinger_on_connect);
2011-07-01 17:54:17 -07:00
ASSERT(!r);
2011-07-20 12:14:15 -07:00
/* Synchronous connect callbacks are not allowed. */
ASSERT(pinger_on_connect_count == 0);
}
2011-07-01 17:04:05 -07:00
static void pipe_pinger_new(void) {
2011-07-01 17:04:05 -07:00
int r;
pinger_t *pinger;
pinger = (pinger_t*)malloc(sizeof(*pinger));
ASSERT(pinger != NULL);
2011-07-01 17:04:05 -07:00
pinger->state = 0;
pinger->pongs = 0;
2011-11-30 11:26:52 +07:00
/* Try to connect to the server and do NUM_PINGS ping-pongs. */
r = uv_pipe_init(uv_default_loop(), &pinger->stream.pipe, 0);
2011-09-13 21:50:32 -07:00
pinger->stream.pipe.data = pinger;
2011-07-01 17:04:05 -07:00
ASSERT(!r);
/* We are never doing multiple reads/connects at a time anyway. */
/* so these handles can be pre-initialized. */
2011-11-04 16:06:53 -07:00
uv_pipe_connect(&pinger->connect_req, &pinger->stream.pipe, TEST_PIPENAME,
2011-07-20 12:14:15 -07:00
pinger_on_connect);
/* Synchronous connect callbacks are not allowed. */
ASSERT(pinger_on_connect_count == 0);
2011-07-01 17:04:05 -07:00
}
2011-07-01 17:54:17 -07:00
TEST_IMPL(tcp_ping_pong) {
tcp_pinger_new();
uv_run(uv_default_loop(), UV_RUN_DEFAULT);
2011-07-01 17:54:17 -07:00
ASSERT(completed_pingers == 1);
MAKE_VALGRIND_HAPPY();
2011-07-01 17:54:17 -07:00
return 0;
}
TEST_IMPL(tcp_ping_pong_v6) {
if (!can_ipv6())
RETURN_SKIP("IPv6 not supported");
2011-07-01 17:54:17 -07:00
tcp_pinger_v6_new();
uv_run(uv_default_loop(), UV_RUN_DEFAULT);
2011-07-01 17:54:17 -07:00
ASSERT(completed_pingers == 1);
MAKE_VALGRIND_HAPPY();
2011-07-01 17:54:17 -07:00
return 0;
}
TEST_IMPL(pipe_ping_pong) {
pipe_pinger_new();
uv_run(uv_default_loop(), UV_RUN_DEFAULT);
2011-07-01 17:04:05 -07:00
ASSERT(completed_pingers == 1);
MAKE_VALGRIND_HAPPY();
2011-07-01 17:04:05 -07:00
return 0;
}