2011-10-26 13:32:15 -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 <stdlib.h>
|
|
|
|
|
|
|
|
static int connection_cb_called = 0;
|
|
|
|
static int close_cb_called = 0;
|
|
|
|
static int connect_cb_called = 0;
|
|
|
|
static uv_tcp_t server;
|
|
|
|
static uv_tcp_t client;
|
|
|
|
|
|
|
|
|
|
|
|
static void close_cb(uv_handle_t* handle) {
|
2020-12-29 13:56:10 +05:30
|
|
|
ASSERT_NOT_NULL(handle);
|
2011-10-26 13:32:15 -07:00
|
|
|
close_cb_called++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void connection_cb(uv_stream_t* tcp, int status) {
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(status);
|
2011-10-26 13:32:15 -07:00
|
|
|
uv_close((uv_handle_t*)&server, close_cb);
|
|
|
|
connection_cb_called++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-06 20:01:22 +01:00
|
|
|
static void start_server(void) {
|
2013-08-31 03:00:34 +02:00
|
|
|
struct sockaddr_in addr;
|
2011-10-26 13:32:15 -07:00
|
|
|
int r;
|
|
|
|
|
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
|
|
|
|
2011-10-26 13:32:15 -07:00
|
|
|
r = uv_tcp_init(uv_default_loop(), &server);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-10-26 13:32:15 -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-10-26 13:32:15 -07:00
|
|
|
|
|
|
|
r = uv_listen((uv_stream_t*)&server, 128, connection_cb);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-10-26 13:32:15 -07:00
|
|
|
|
|
|
|
r = uv_listen((uv_stream_t*)&server, 128, connection_cb);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-10-26 13:32:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void connect_cb(uv_connect_t* req, int status) {
|
2020-12-29 13:56:10 +05:30
|
|
|
ASSERT_NOT_NULL(req);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(status);
|
2011-10-26 13:32:15 -07:00
|
|
|
free(req);
|
|
|
|
uv_close((uv_handle_t*)&client, close_cb);
|
|
|
|
connect_cb_called++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-06 20:01:22 +01:00
|
|
|
static void client_connect(void) {
|
2013-08-31 03:00:34 +02:00
|
|
|
struct sockaddr_in addr;
|
2011-10-26 13:32:15 -07:00
|
|
|
uv_connect_t* connect_req = malloc(sizeof *connect_req);
|
|
|
|
int r;
|
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(uv_ip4_addr("127.0.0.1", TEST_PORT, &addr));
|
2020-12-29 13:56:10 +05:30
|
|
|
ASSERT_NOT_NULL(connect_req);
|
2011-10-26 13:32:15 -07:00
|
|
|
|
|
|
|
r = uv_tcp_init(uv_default_loop(), &client);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-10-26 13:32:15 -07:00
|
|
|
|
2013-09-03 23:12:07 +02:00
|
|
|
r = uv_tcp_connect(connect_req,
|
|
|
|
&client,
|
|
|
|
(const struct sockaddr*) &addr,
|
|
|
|
connect_cb);
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_OK(r);
|
2011-10-26 13:32:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TEST_IMPL(multiple_listen) {
|
|
|
|
start_server();
|
|
|
|
|
|
|
|
client_connect();
|
|
|
|
|
2013-01-16 23:20:03 +01:00
|
|
|
uv_run(uv_default_loop(), UV_RUN_DEFAULT);
|
2011-10-26 13:32:15 -07:00
|
|
|
|
2023-10-06 19:50:15 +02:00
|
|
|
ASSERT_EQ(1, connection_cb_called);
|
|
|
|
ASSERT_EQ(1, connect_cb_called);
|
|
|
|
ASSERT_EQ(2, close_cb_called);
|
2011-10-26 13:32:15 -07:00
|
|
|
|
2023-03-12 07:59:00 -06:00
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
2011-10-26 13:32:15 -07:00
|
|
|
return 0;
|
|
|
|
}
|