foolio 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +22 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +29 -0
- data/Rakefile +21 -0
- data/examples/timer.rb +20 -0
- data/ext/foolio/extconf.rb +34 -0
- data/ext/foolio/foolio_ext.c +921 -0
- data/ext/foolio/gen.rb +50 -0
- data/ext/foolio/make_table.rb +12 -0
- data/ext/foolio/templ +243 -0
- data/ext/libuv/.gitignore +33 -0
- data/ext/libuv/.mailmap +13 -0
- data/ext/libuv/.travis.yml +9 -0
- data/ext/libuv/AUTHORS +61 -0
- data/ext/libuv/LICENSE +44 -0
- data/ext/libuv/Makefile +71 -0
- data/ext/libuv/README.md +90 -0
- data/ext/libuv/common.gypi +178 -0
- data/ext/libuv/gyp_uv +73 -0
- data/ext/libuv/include/uv-private/eio.h +403 -0
- data/ext/libuv/include/uv-private/ev.h +838 -0
- data/ext/libuv/include/uv-private/ngx-queue.h +108 -0
- data/ext/libuv/include/uv-private/tree.h +768 -0
- data/ext/libuv/include/uv-private/uv-unix.h +324 -0
- data/ext/libuv/include/uv-private/uv-win.h +517 -0
- data/ext/libuv/include/uv.h +1838 -0
- data/ext/libuv/src/fs-poll.c +235 -0
- data/ext/libuv/src/inet.c +293 -0
- data/ext/libuv/src/unix/async.c +148 -0
- data/ext/libuv/src/unix/core.c +696 -0
- data/ext/libuv/src/unix/cygwin.c +83 -0
- data/ext/libuv/src/unix/darwin.c +342 -0
- data/ext/libuv/src/unix/dl.c +83 -0
- data/ext/libuv/src/unix/eio/Changes +63 -0
- data/ext/libuv/src/unix/eio/LICENSE +36 -0
- data/ext/libuv/src/unix/eio/Makefile.am +15 -0
- data/ext/libuv/src/unix/eio/aclocal.m4 +8957 -0
- data/ext/libuv/src/unix/eio/autogen.sh +3 -0
- data/ext/libuv/src/unix/eio/config.h.in +86 -0
- data/ext/libuv/src/unix/eio/config_cygwin.h +80 -0
- data/ext/libuv/src/unix/eio/config_darwin.h +141 -0
- data/ext/libuv/src/unix/eio/config_freebsd.h +81 -0
- data/ext/libuv/src/unix/eio/config_linux.h +94 -0
- data/ext/libuv/src/unix/eio/config_netbsd.h +81 -0
- data/ext/libuv/src/unix/eio/config_openbsd.h +137 -0
- data/ext/libuv/src/unix/eio/config_sunos.h +84 -0
- data/ext/libuv/src/unix/eio/configure.ac +22 -0
- data/ext/libuv/src/unix/eio/demo.c +194 -0
- data/ext/libuv/src/unix/eio/ecb.h +370 -0
- data/ext/libuv/src/unix/eio/eio.3 +3428 -0
- data/ext/libuv/src/unix/eio/eio.c +2593 -0
- data/ext/libuv/src/unix/eio/eio.pod +969 -0
- data/ext/libuv/src/unix/eio/libeio.m4 +195 -0
- data/ext/libuv/src/unix/eio/xthread.h +164 -0
- data/ext/libuv/src/unix/error.c +105 -0
- data/ext/libuv/src/unix/ev/Changes +388 -0
- data/ext/libuv/src/unix/ev/LICENSE +36 -0
- data/ext/libuv/src/unix/ev/Makefile.am +18 -0
- data/ext/libuv/src/unix/ev/Makefile.in +771 -0
- data/ext/libuv/src/unix/ev/README +58 -0
- data/ext/libuv/src/unix/ev/aclocal.m4 +8957 -0
- data/ext/libuv/src/unix/ev/autogen.sh +6 -0
- data/ext/libuv/src/unix/ev/config.guess +1526 -0
- data/ext/libuv/src/unix/ev/config.h.in +125 -0
- data/ext/libuv/src/unix/ev/config.sub +1658 -0
- data/ext/libuv/src/unix/ev/config_cygwin.h +123 -0
- data/ext/libuv/src/unix/ev/config_darwin.h +122 -0
- data/ext/libuv/src/unix/ev/config_freebsd.h +120 -0
- data/ext/libuv/src/unix/ev/config_linux.h +141 -0
- data/ext/libuv/src/unix/ev/config_netbsd.h +120 -0
- data/ext/libuv/src/unix/ev/config_openbsd.h +126 -0
- data/ext/libuv/src/unix/ev/config_sunos.h +122 -0
- data/ext/libuv/src/unix/ev/configure +13037 -0
- data/ext/libuv/src/unix/ev/configure.ac +18 -0
- data/ext/libuv/src/unix/ev/depcomp +630 -0
- data/ext/libuv/src/unix/ev/ev++.h +816 -0
- data/ext/libuv/src/unix/ev/ev.3 +5311 -0
- data/ext/libuv/src/unix/ev/ev.c +3925 -0
- data/ext/libuv/src/unix/ev/ev.pod +5243 -0
- data/ext/libuv/src/unix/ev/ev_epoll.c +266 -0
- data/ext/libuv/src/unix/ev/ev_kqueue.c +235 -0
- data/ext/libuv/src/unix/ev/ev_poll.c +148 -0
- data/ext/libuv/src/unix/ev/ev_port.c +179 -0
- data/ext/libuv/src/unix/ev/ev_select.c +310 -0
- data/ext/libuv/src/unix/ev/ev_vars.h +203 -0
- data/ext/libuv/src/unix/ev/ev_win32.c +153 -0
- data/ext/libuv/src/unix/ev/ev_wrap.h +196 -0
- data/ext/libuv/src/unix/ev/event.c +402 -0
- data/ext/libuv/src/unix/ev/event.h +170 -0
- data/ext/libuv/src/unix/ev/install-sh +294 -0
- data/ext/libuv/src/unix/ev/libev.m4 +39 -0
- data/ext/libuv/src/unix/ev/ltmain.sh +8413 -0
- data/ext/libuv/src/unix/ev/missing +336 -0
- data/ext/libuv/src/unix/ev/mkinstalldirs +111 -0
- data/ext/libuv/src/unix/freebsd.c +326 -0
- data/ext/libuv/src/unix/fs.c +739 -0
- data/ext/libuv/src/unix/internal.h +188 -0
- data/ext/libuv/src/unix/kqueue.c +120 -0
- data/ext/libuv/src/unix/linux/inotify.c +239 -0
- data/ext/libuv/src/unix/linux/linux-core.c +557 -0
- data/ext/libuv/src/unix/linux/syscalls.c +388 -0
- data/ext/libuv/src/unix/linux/syscalls.h +124 -0
- data/ext/libuv/src/unix/loop-watcher.c +62 -0
- data/ext/libuv/src/unix/loop.c +94 -0
- data/ext/libuv/src/unix/netbsd.c +108 -0
- data/ext/libuv/src/unix/openbsd.c +295 -0
- data/ext/libuv/src/unix/pipe.c +259 -0
- data/ext/libuv/src/unix/poll.c +114 -0
- data/ext/libuv/src/unix/process.c +495 -0
- data/ext/libuv/src/unix/signal.c +269 -0
- data/ext/libuv/src/unix/stream.c +990 -0
- data/ext/libuv/src/unix/sunos.c +481 -0
- data/ext/libuv/src/unix/tcp.c +393 -0
- data/ext/libuv/src/unix/thread.c +251 -0
- data/ext/libuv/src/unix/timer.c +136 -0
- data/ext/libuv/src/unix/tty.c +145 -0
- data/ext/libuv/src/unix/udp.c +659 -0
- data/ext/libuv/src/unix/uv-eio.c +107 -0
- data/ext/libuv/src/unix/uv-eio.h +13 -0
- data/ext/libuv/src/uv-common.c +380 -0
- data/ext/libuv/src/uv-common.h +170 -0
- data/ext/libuv/src/win/async.c +100 -0
- data/ext/libuv/src/win/atomicops-inl.h +56 -0
- data/ext/libuv/src/win/core.c +278 -0
- data/ext/libuv/src/win/dl.c +86 -0
- data/ext/libuv/src/win/error.c +155 -0
- data/ext/libuv/src/win/fs-event.c +510 -0
- data/ext/libuv/src/win/fs.c +1948 -0
- data/ext/libuv/src/win/getaddrinfo.c +365 -0
- data/ext/libuv/src/win/handle-inl.h +149 -0
- data/ext/libuv/src/win/handle.c +154 -0
- data/ext/libuv/src/win/internal.h +343 -0
- data/ext/libuv/src/win/loop-watcher.c +122 -0
- data/ext/libuv/src/win/pipe.c +1672 -0
- data/ext/libuv/src/win/poll.c +616 -0
- data/ext/libuv/src/win/process-stdio.c +500 -0
- data/ext/libuv/src/win/process.c +1013 -0
- data/ext/libuv/src/win/req-inl.h +220 -0
- data/ext/libuv/src/win/req.c +25 -0
- data/ext/libuv/src/win/signal.c +57 -0
- data/ext/libuv/src/win/stream-inl.h +67 -0
- data/ext/libuv/src/win/stream.c +167 -0
- data/ext/libuv/src/win/tcp.c +1394 -0
- data/ext/libuv/src/win/thread.c +372 -0
- data/ext/libuv/src/win/threadpool.c +74 -0
- data/ext/libuv/src/win/timer.c +224 -0
- data/ext/libuv/src/win/tty.c +1799 -0
- data/ext/libuv/src/win/udp.c +716 -0
- data/ext/libuv/src/win/util.c +864 -0
- data/ext/libuv/src/win/winapi.c +132 -0
- data/ext/libuv/src/win/winapi.h +4452 -0
- data/ext/libuv/src/win/winsock.c +557 -0
- data/ext/libuv/src/win/winsock.h +171 -0
- data/ext/libuv/test/benchmark-async-pummel.c +97 -0
- data/ext/libuv/test/benchmark-async.c +137 -0
- data/ext/libuv/test/benchmark-fs-stat.c +135 -0
- data/ext/libuv/test/benchmark-getaddrinfo.c +94 -0
- data/ext/libuv/test/benchmark-list.h +127 -0
- data/ext/libuv/test/benchmark-loop-count.c +88 -0
- data/ext/libuv/test/benchmark-million-timers.c +65 -0
- data/ext/libuv/test/benchmark-ping-pongs.c +213 -0
- data/ext/libuv/test/benchmark-pound.c +324 -0
- data/ext/libuv/test/benchmark-pump.c +462 -0
- data/ext/libuv/test/benchmark-sizes.c +44 -0
- data/ext/libuv/test/benchmark-spawn.c +162 -0
- data/ext/libuv/test/benchmark-tcp-write-batch.c +140 -0
- data/ext/libuv/test/benchmark-thread.c +64 -0
- data/ext/libuv/test/benchmark-udp-packet-storm.c +247 -0
- data/ext/libuv/test/blackhole-server.c +118 -0
- data/ext/libuv/test/dns-server.c +321 -0
- data/ext/libuv/test/echo-server.c +378 -0
- data/ext/libuv/test/fixtures/empty_file +0 -0
- data/ext/libuv/test/fixtures/load_error.node +1 -0
- data/ext/libuv/test/run-benchmarks.c +64 -0
- data/ext/libuv/test/run-tests.c +138 -0
- data/ext/libuv/test/runner-unix.c +295 -0
- data/ext/libuv/test/runner-unix.h +36 -0
- data/ext/libuv/test/runner-win.c +285 -0
- data/ext/libuv/test/runner-win.h +42 -0
- data/ext/libuv/test/runner.c +355 -0
- data/ext/libuv/test/runner.h +159 -0
- data/ext/libuv/test/task.h +112 -0
- data/ext/libuv/test/test-async.c +118 -0
- data/ext/libuv/test/test-callback-order.c +76 -0
- data/ext/libuv/test/test-callback-stack.c +203 -0
- data/ext/libuv/test/test-connection-fail.c +148 -0
- data/ext/libuv/test/test-cwd-and-chdir.c +64 -0
- data/ext/libuv/test/test-delayed-accept.c +188 -0
- data/ext/libuv/test/test-dlerror.c +58 -0
- data/ext/libuv/test/test-error.c +59 -0
- data/ext/libuv/test/test-fail-always.c +29 -0
- data/ext/libuv/test/test-fs-event.c +474 -0
- data/ext/libuv/test/test-fs-poll.c +146 -0
- data/ext/libuv/test/test-fs.c +1843 -0
- data/ext/libuv/test/test-get-currentexe.c +63 -0
- data/ext/libuv/test/test-get-loadavg.c +36 -0
- data/ext/libuv/test/test-get-memory.c +38 -0
- data/ext/libuv/test/test-getaddrinfo.c +122 -0
- data/ext/libuv/test/test-getsockname.c +342 -0
- data/ext/libuv/test/test-hrtime.c +54 -0
- data/ext/libuv/test/test-idle.c +81 -0
- data/ext/libuv/test/test-ipc-send-recv.c +209 -0
- data/ext/libuv/test/test-ipc.c +620 -0
- data/ext/libuv/test/test-list.h +427 -0
- data/ext/libuv/test/test-loop-handles.c +336 -0
- data/ext/libuv/test/test-multiple-listen.c +102 -0
- data/ext/libuv/test/test-mutexes.c +63 -0
- data/ext/libuv/test/test-pass-always.c +28 -0
- data/ext/libuv/test/test-ping-pong.c +253 -0
- data/ext/libuv/test/test-pipe-bind-error.c +140 -0
- data/ext/libuv/test/test-pipe-connect-error.c +96 -0
- data/ext/libuv/test/test-platform-output.c +87 -0
- data/ext/libuv/test/test-poll-close.c +72 -0
- data/ext/libuv/test/test-poll.c +573 -0
- data/ext/libuv/test/test-process-title.c +49 -0
- data/ext/libuv/test/test-ref.c +338 -0
- data/ext/libuv/test/test-run-once.c +48 -0
- data/ext/libuv/test/test-semaphore.c +111 -0
- data/ext/libuv/test/test-shutdown-close.c +103 -0
- data/ext/libuv/test/test-shutdown-eof.c +183 -0
- data/ext/libuv/test/test-signal.c +162 -0
- data/ext/libuv/test/test-spawn.c +863 -0
- data/ext/libuv/test/test-stdio-over-pipes.c +246 -0
- data/ext/libuv/test/test-tcp-bind-error.c +191 -0
- data/ext/libuv/test/test-tcp-bind6-error.c +154 -0
- data/ext/libuv/test/test-tcp-close-while-connecting.c +80 -0
- data/ext/libuv/test/test-tcp-close.c +129 -0
- data/ext/libuv/test/test-tcp-connect-error-after-write.c +95 -0
- data/ext/libuv/test/test-tcp-connect-error.c +70 -0
- data/ext/libuv/test/test-tcp-connect-timeout.c +85 -0
- data/ext/libuv/test/test-tcp-connect6-error.c +68 -0
- data/ext/libuv/test/test-tcp-flags.c +51 -0
- data/ext/libuv/test/test-tcp-shutdown-after-write.c +131 -0
- data/ext/libuv/test/test-tcp-unexpected-read.c +113 -0
- data/ext/libuv/test/test-tcp-write-error.c +168 -0
- data/ext/libuv/test/test-tcp-write-to-half-open-connection.c +135 -0
- data/ext/libuv/test/test-tcp-writealot.c +170 -0
- data/ext/libuv/test/test-thread.c +183 -0
- data/ext/libuv/test/test-threadpool.c +57 -0
- data/ext/libuv/test/test-timer-again.c +141 -0
- data/ext/libuv/test/test-timer.c +152 -0
- data/ext/libuv/test/test-tty.c +110 -0
- data/ext/libuv/test/test-udp-dgram-too-big.c +86 -0
- data/ext/libuv/test/test-udp-ipv6.c +156 -0
- data/ext/libuv/test/test-udp-multicast-join.c +139 -0
- data/ext/libuv/test/test-udp-multicast-ttl.c +86 -0
- data/ext/libuv/test/test-udp-options.c +86 -0
- data/ext/libuv/test/test-udp-send-and-recv.c +208 -0
- data/ext/libuv/test/test-util.c +97 -0
- data/ext/libuv/test/test-walk-handles.c +77 -0
- data/ext/libuv/uv.gyp +375 -0
- data/ext/libuv/vcbuild.bat +105 -0
- data/foolio.gemspec +18 -0
- data/lib/foolio.rb +9 -0
- data/lib/foolio/handle.rb +27 -0
- data/lib/foolio/listener.rb +26 -0
- data/lib/foolio/loop.rb +79 -0
- data/lib/foolio/stream.rb +109 -0
- data/lib/foolio/version.rb +3 -0
- metadata +309 -0
|
@@ -0,0 +1,203 @@
|
|
|
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
|
+
/*
|
|
23
|
+
* TODO: Add explanation of why we want on_close to be called from fresh
|
|
24
|
+
* stack.
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
#include "uv.h"
|
|
28
|
+
#include "task.h"
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
static const char MESSAGE[] = "Failure is for the weak. Everyone dies alone.";
|
|
32
|
+
|
|
33
|
+
static uv_tcp_t client;
|
|
34
|
+
static uv_timer_t timer;
|
|
35
|
+
static uv_connect_t connect_req;
|
|
36
|
+
static uv_write_t write_req;
|
|
37
|
+
static uv_shutdown_t shutdown_req;
|
|
38
|
+
|
|
39
|
+
static int nested = 0;
|
|
40
|
+
static int close_cb_called = 0;
|
|
41
|
+
static int connect_cb_called = 0;
|
|
42
|
+
static int write_cb_called = 0;
|
|
43
|
+
static int timer_cb_called = 0;
|
|
44
|
+
static int bytes_received = 0;
|
|
45
|
+
static int shutdown_cb_called = 0;
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
static uv_buf_t alloc_cb(uv_handle_t* handle, size_t size) {
|
|
49
|
+
uv_buf_t buf;
|
|
50
|
+
buf.len = size;
|
|
51
|
+
buf.base = (char*) malloc(size);
|
|
52
|
+
ASSERT(buf.base);
|
|
53
|
+
return buf;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
static void close_cb(uv_handle_t* handle) {
|
|
58
|
+
ASSERT(nested == 0 && "close_cb must be called from a fresh stack");
|
|
59
|
+
|
|
60
|
+
close_cb_called++;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
static void shutdown_cb(uv_shutdown_t* req, int status) {
|
|
65
|
+
ASSERT(status == 0);
|
|
66
|
+
ASSERT(nested == 0 && "shutdown_cb must be called from a fresh stack");
|
|
67
|
+
|
|
68
|
+
shutdown_cb_called++;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
static void read_cb(uv_stream_t* tcp, ssize_t nread, uv_buf_t buf) {
|
|
73
|
+
ASSERT(nested == 0 && "read_cb must be called from a fresh stack");
|
|
74
|
+
|
|
75
|
+
printf("Read. nread == %d\n", (int)nread);
|
|
76
|
+
free(buf.base);
|
|
77
|
+
|
|
78
|
+
if (nread == 0) {
|
|
79
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EAGAIN);
|
|
80
|
+
return;
|
|
81
|
+
|
|
82
|
+
} else if (nread == -1) {
|
|
83
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EOF);
|
|
84
|
+
|
|
85
|
+
nested++;
|
|
86
|
+
uv_close((uv_handle_t*)tcp, close_cb);
|
|
87
|
+
nested--;
|
|
88
|
+
|
|
89
|
+
return;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
bytes_received += nread;
|
|
93
|
+
|
|
94
|
+
/* We call shutdown here because when bytes_received == sizeof MESSAGE */
|
|
95
|
+
/* there will be no more data sent nor received, so here it would be */
|
|
96
|
+
/* possible for a backend to to call shutdown_cb immediately and *not* */
|
|
97
|
+
/* from a fresh stack. */
|
|
98
|
+
if (bytes_received == sizeof MESSAGE) {
|
|
99
|
+
nested++;
|
|
100
|
+
|
|
101
|
+
puts("Shutdown");
|
|
102
|
+
|
|
103
|
+
if (uv_shutdown(&shutdown_req, (uv_stream_t*)tcp, shutdown_cb)) {
|
|
104
|
+
FATAL("uv_shutdown failed");
|
|
105
|
+
}
|
|
106
|
+
nested--;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
static void timer_cb(uv_timer_t* handle, int status) {
|
|
112
|
+
ASSERT(handle == &timer);
|
|
113
|
+
ASSERT(status == 0);
|
|
114
|
+
ASSERT(nested == 0 && "timer_cb must be called from a fresh stack");
|
|
115
|
+
|
|
116
|
+
puts("Timeout complete. Now read data...");
|
|
117
|
+
|
|
118
|
+
nested++;
|
|
119
|
+
if (uv_read_start((uv_stream_t*)&client, alloc_cb, read_cb)) {
|
|
120
|
+
FATAL("uv_read_start failed");
|
|
121
|
+
}
|
|
122
|
+
nested--;
|
|
123
|
+
|
|
124
|
+
timer_cb_called++;
|
|
125
|
+
|
|
126
|
+
uv_close((uv_handle_t*)handle, close_cb);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
static void write_cb(uv_write_t* req, int status) {
|
|
131
|
+
int r;
|
|
132
|
+
|
|
133
|
+
ASSERT(status == 0);
|
|
134
|
+
ASSERT(nested == 0 && "write_cb must be called from a fresh stack");
|
|
135
|
+
|
|
136
|
+
puts("Data written. 500ms timeout...");
|
|
137
|
+
|
|
138
|
+
/* After the data has been sent, we're going to wait for a while, then */
|
|
139
|
+
/* start reading. This makes us certain that the message has been echoed */
|
|
140
|
+
/* back to our receive buffer when we start reading. This maximizes the */
|
|
141
|
+
/* temptation for the backend to use dirty stack for calling read_cb. */
|
|
142
|
+
nested++;
|
|
143
|
+
r = uv_timer_init(uv_default_loop(), &timer);
|
|
144
|
+
ASSERT(r == 0);
|
|
145
|
+
r = uv_timer_start(&timer, timer_cb, 500, 0);
|
|
146
|
+
ASSERT(r == 0);
|
|
147
|
+
nested--;
|
|
148
|
+
|
|
149
|
+
write_cb_called++;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
static void connect_cb(uv_connect_t* req, int status) {
|
|
154
|
+
uv_buf_t buf;
|
|
155
|
+
|
|
156
|
+
puts("Connected. Write some data to echo server...");
|
|
157
|
+
|
|
158
|
+
ASSERT(status == 0);
|
|
159
|
+
ASSERT(nested == 0 && "connect_cb must be called from a fresh stack");
|
|
160
|
+
|
|
161
|
+
nested++;
|
|
162
|
+
|
|
163
|
+
buf.base = (char*) &MESSAGE;
|
|
164
|
+
buf.len = sizeof MESSAGE;
|
|
165
|
+
|
|
166
|
+
if (uv_write(&write_req, (uv_stream_t*)req->handle, &buf, 1, write_cb)) {
|
|
167
|
+
FATAL("uv_write failed");
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
nested--;
|
|
171
|
+
|
|
172
|
+
connect_cb_called++;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
TEST_IMPL(callback_stack) {
|
|
177
|
+
struct sockaddr_in addr = uv_ip4_addr("127.0.0.1", TEST_PORT);
|
|
178
|
+
|
|
179
|
+
if (uv_tcp_init(uv_default_loop(), &client)) {
|
|
180
|
+
FATAL("uv_tcp_init failed");
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
puts("Connecting...");
|
|
184
|
+
|
|
185
|
+
nested++;
|
|
186
|
+
|
|
187
|
+
if (uv_tcp_connect(&connect_req, &client, addr, connect_cb)) {
|
|
188
|
+
FATAL("uv_tcp_connect failed");
|
|
189
|
+
}
|
|
190
|
+
nested--;
|
|
191
|
+
|
|
192
|
+
uv_run(uv_default_loop());
|
|
193
|
+
|
|
194
|
+
ASSERT(nested == 0);
|
|
195
|
+
ASSERT(connect_cb_called == 1 && "connect_cb must be called exactly once");
|
|
196
|
+
ASSERT(write_cb_called == 1 && "write_cb must be called exactly once");
|
|
197
|
+
ASSERT(timer_cb_called == 1 && "timer_cb must be called exactly once");
|
|
198
|
+
ASSERT(bytes_received == sizeof MESSAGE);
|
|
199
|
+
ASSERT(shutdown_cb_called == 1 && "shutdown_cb must be called exactly once");
|
|
200
|
+
ASSERT(close_cb_called == 2 && "close_cb must be called exactly twice");
|
|
201
|
+
|
|
202
|
+
return 0;
|
|
203
|
+
}
|
|
@@ -0,0 +1,148 @@
|
|
|
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 <stdlib.h>
|
|
26
|
+
#include <stdio.h>
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
static uv_tcp_t tcp;
|
|
30
|
+
static uv_connect_t req;
|
|
31
|
+
static int connect_cb_calls;
|
|
32
|
+
static int close_cb_calls;
|
|
33
|
+
|
|
34
|
+
static uv_timer_t timer;
|
|
35
|
+
static int timer_close_cb_calls;
|
|
36
|
+
static int timer_cb_calls;
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
static void on_close(uv_handle_t* handle) {
|
|
40
|
+
close_cb_calls++;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
static void timer_close_cb(uv_handle_t* handle) {
|
|
45
|
+
timer_close_cb_calls++;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
static void timer_cb(uv_timer_t* handle, int status) {
|
|
50
|
+
ASSERT(status == 0);
|
|
51
|
+
timer_cb_calls++;
|
|
52
|
+
|
|
53
|
+
/*
|
|
54
|
+
* These are the important asserts. The connection callback has been made,
|
|
55
|
+
* but libuv hasn't automatically closed the socket. The user must
|
|
56
|
+
* uv_close the handle manually.
|
|
57
|
+
*/
|
|
58
|
+
ASSERT(close_cb_calls == 0);
|
|
59
|
+
ASSERT(connect_cb_calls == 1);
|
|
60
|
+
|
|
61
|
+
/* Close the tcp handle. */
|
|
62
|
+
uv_close((uv_handle_t*)&tcp, on_close);
|
|
63
|
+
|
|
64
|
+
/* Close the timer. */
|
|
65
|
+
uv_close((uv_handle_t*)handle, timer_close_cb);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
static void on_connect_with_close(uv_connect_t *req, int status) {
|
|
70
|
+
ASSERT((uv_stream_t*) &tcp == req->handle);
|
|
71
|
+
ASSERT(status == -1);
|
|
72
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_ECONNREFUSED);
|
|
73
|
+
connect_cb_calls++;
|
|
74
|
+
|
|
75
|
+
ASSERT(close_cb_calls == 0);
|
|
76
|
+
uv_close((uv_handle_t*)req->handle, on_close);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
static void on_connect_without_close(uv_connect_t *req, int status) {
|
|
81
|
+
ASSERT(status == -1);
|
|
82
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_ECONNREFUSED);
|
|
83
|
+
connect_cb_calls++;
|
|
84
|
+
|
|
85
|
+
uv_timer_start(&timer, timer_cb, 100, 0);
|
|
86
|
+
|
|
87
|
+
ASSERT(close_cb_calls == 0);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
void connection_fail(uv_connect_cb connect_cb) {
|
|
92
|
+
struct sockaddr_in client_addr, server_addr;
|
|
93
|
+
int r;
|
|
94
|
+
|
|
95
|
+
client_addr = uv_ip4_addr("0.0.0.0", 0);
|
|
96
|
+
|
|
97
|
+
/* There should be no servers listening on this port. */
|
|
98
|
+
server_addr = uv_ip4_addr("127.0.0.1", TEST_PORT);
|
|
99
|
+
|
|
100
|
+
/* Try to connect to the server and do NUM_PINGS ping-pongs. */
|
|
101
|
+
r = uv_tcp_init(uv_default_loop(), &tcp);
|
|
102
|
+
ASSERT(!r);
|
|
103
|
+
|
|
104
|
+
/* We are never doing multiple reads/connects at a time anyway. */
|
|
105
|
+
/* so these handles can be pre-initialized. */
|
|
106
|
+
uv_tcp_bind(&tcp, client_addr);
|
|
107
|
+
r = uv_tcp_connect(&req, &tcp, server_addr, connect_cb);
|
|
108
|
+
ASSERT(!r);
|
|
109
|
+
|
|
110
|
+
uv_run(uv_default_loop());
|
|
111
|
+
|
|
112
|
+
ASSERT(connect_cb_calls == 1);
|
|
113
|
+
ASSERT(close_cb_calls == 1);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
/*
|
|
118
|
+
* This test attempts to connect to a port where no server is running. We
|
|
119
|
+
* expect an error.
|
|
120
|
+
*/
|
|
121
|
+
TEST_IMPL(connection_fail) {
|
|
122
|
+
connection_fail(on_connect_with_close);
|
|
123
|
+
|
|
124
|
+
ASSERT(timer_close_cb_calls == 0);
|
|
125
|
+
ASSERT(timer_cb_calls == 0);
|
|
126
|
+
|
|
127
|
+
return 0;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
/*
|
|
132
|
+
* This test is the same as the first except it check that the close
|
|
133
|
+
* callback of the tcp handle hasn't been made after the failed connection
|
|
134
|
+
* attempt.
|
|
135
|
+
*/
|
|
136
|
+
TEST_IMPL(connection_fail_doesnt_auto_close) {
|
|
137
|
+
int r;
|
|
138
|
+
|
|
139
|
+
r = uv_timer_init(uv_default_loop(), &timer);
|
|
140
|
+
ASSERT(r == 0);
|
|
141
|
+
|
|
142
|
+
connection_fail(on_connect_without_close);
|
|
143
|
+
|
|
144
|
+
ASSERT(timer_close_cb_calls == 1);
|
|
145
|
+
ASSERT(timer_cb_calls == 1);
|
|
146
|
+
|
|
147
|
+
return 0;
|
|
148
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
2
|
+
*
|
|
3
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
* of this software and associated documentation files (the "Software"), to
|
|
5
|
+
* deal in the Software without restriction, including without limitation the
|
|
6
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
7
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
* furnished to do so, subject to the following conditions:
|
|
9
|
+
*
|
|
10
|
+
* The above copyright notice and this permission notice shall be included in
|
|
11
|
+
* all copies or substantial portions of the Software.
|
|
12
|
+
*
|
|
13
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
18
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
19
|
+
* IN THE SOFTWARE.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
#include "uv.h"
|
|
23
|
+
#include "task.h"
|
|
24
|
+
#include <string.h>
|
|
25
|
+
|
|
26
|
+
#define PATHMAX 1024
|
|
27
|
+
extern char executable_path[];
|
|
28
|
+
|
|
29
|
+
TEST_IMPL(cwd_and_chdir) {
|
|
30
|
+
char buffer_orig[PATHMAX];
|
|
31
|
+
char buffer_new[PATHMAX];
|
|
32
|
+
size_t size;
|
|
33
|
+
char* last_slash;
|
|
34
|
+
uv_err_t err;
|
|
35
|
+
|
|
36
|
+
size = sizeof(buffer_orig) / sizeof(buffer_orig[0]);
|
|
37
|
+
err = uv_cwd(buffer_orig, size);
|
|
38
|
+
ASSERT(err.code == UV_OK);
|
|
39
|
+
|
|
40
|
+
/* Remove trailing slash unless at a root directory. */
|
|
41
|
+
#ifdef _WIN32
|
|
42
|
+
last_slash = strrchr(buffer_orig, '\\');
|
|
43
|
+
ASSERT(last_slash);
|
|
44
|
+
if (last_slash > buffer_orig && *(last_slash - 1) != ':') {
|
|
45
|
+
*last_slash = '\0';
|
|
46
|
+
}
|
|
47
|
+
#else /* Unix */
|
|
48
|
+
last_slash = strrchr(buffer_orig, '/');
|
|
49
|
+
ASSERT(last_slash);
|
|
50
|
+
if (last_slash != buffer_orig) {
|
|
51
|
+
*last_slash = '\0';
|
|
52
|
+
}
|
|
53
|
+
#endif
|
|
54
|
+
|
|
55
|
+
err = uv_chdir(buffer_orig);
|
|
56
|
+
ASSERT(err.code == UV_OK);
|
|
57
|
+
|
|
58
|
+
err = uv_cwd(buffer_new, size);
|
|
59
|
+
ASSERT(err.code == UV_OK);
|
|
60
|
+
|
|
61
|
+
ASSERT(strcmp(buffer_orig, buffer_new) == 0);
|
|
62
|
+
|
|
63
|
+
return 0;
|
|
64
|
+
}
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
2
|
+
*
|
|
3
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
* of this software and associated documentation files (the "Software"), to
|
|
5
|
+
* deal in the Software without restriction, including without limitation the
|
|
6
|
+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
7
|
+
* sell copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
* furnished to do so, subject to the following conditions:
|
|
9
|
+
*
|
|
10
|
+
* The above copyright notice and this permission notice shall be included in
|
|
11
|
+
* all copies or substantial portions of the Software.
|
|
12
|
+
*
|
|
13
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
18
|
+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
19
|
+
* IN THE SOFTWARE.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
#include "uv.h"
|
|
23
|
+
#include "task.h"
|
|
24
|
+
#include <stdio.h>
|
|
25
|
+
#include <stdlib.h>
|
|
26
|
+
|
|
27
|
+
static int connection_cb_called = 0;
|
|
28
|
+
static int do_accept_called = 0;
|
|
29
|
+
static int close_cb_called = 0;
|
|
30
|
+
static int connect_cb_called = 0;
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
static uv_buf_t alloc_cb(uv_handle_t* handle, size_t size) {
|
|
34
|
+
uv_buf_t buf;
|
|
35
|
+
buf.base = (char*)malloc(size);
|
|
36
|
+
buf.len = size;
|
|
37
|
+
return buf;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
static void close_cb(uv_handle_t* handle) {
|
|
42
|
+
ASSERT(handle != NULL);
|
|
43
|
+
|
|
44
|
+
free(handle);
|
|
45
|
+
|
|
46
|
+
close_cb_called++;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
static void do_accept(uv_timer_t* timer_handle, int status) {
|
|
51
|
+
uv_tcp_t* server;
|
|
52
|
+
uv_tcp_t* accepted_handle = (uv_tcp_t*)malloc(sizeof *accepted_handle);
|
|
53
|
+
int r;
|
|
54
|
+
|
|
55
|
+
ASSERT(timer_handle != NULL);
|
|
56
|
+
ASSERT(status == 0);
|
|
57
|
+
ASSERT(accepted_handle != NULL);
|
|
58
|
+
|
|
59
|
+
r = uv_tcp_init(uv_default_loop(), accepted_handle);
|
|
60
|
+
ASSERT(r == 0);
|
|
61
|
+
|
|
62
|
+
server = (uv_tcp_t*)timer_handle->data;
|
|
63
|
+
r = uv_accept((uv_stream_t*)server, (uv_stream_t*)accepted_handle);
|
|
64
|
+
ASSERT(r == 0);
|
|
65
|
+
|
|
66
|
+
do_accept_called++;
|
|
67
|
+
|
|
68
|
+
/* Immediately close the accepted handle. */
|
|
69
|
+
uv_close((uv_handle_t*)accepted_handle, close_cb);
|
|
70
|
+
|
|
71
|
+
/* After accepting the two clients close the server handle */
|
|
72
|
+
if (do_accept_called == 2) {
|
|
73
|
+
uv_close((uv_handle_t*)server, close_cb);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* Dispose the timer. */
|
|
77
|
+
uv_close((uv_handle_t*)timer_handle, close_cb);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
static void connection_cb(uv_stream_t* tcp, int status) {
|
|
82
|
+
int r;
|
|
83
|
+
uv_timer_t* timer_handle;
|
|
84
|
+
|
|
85
|
+
ASSERT(status == 0);
|
|
86
|
+
|
|
87
|
+
timer_handle = (uv_timer_t*)malloc(sizeof *timer_handle);
|
|
88
|
+
ASSERT(timer_handle != NULL);
|
|
89
|
+
|
|
90
|
+
/* Accept the client after 1 second */
|
|
91
|
+
r = uv_timer_init(uv_default_loop(), timer_handle);
|
|
92
|
+
ASSERT(r == 0);
|
|
93
|
+
|
|
94
|
+
timer_handle->data = tcp;
|
|
95
|
+
|
|
96
|
+
r = uv_timer_start(timer_handle, do_accept, 1000, 0);
|
|
97
|
+
ASSERT(r == 0);
|
|
98
|
+
|
|
99
|
+
connection_cb_called++;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
static void start_server() {
|
|
104
|
+
struct sockaddr_in addr = uv_ip4_addr("0.0.0.0", TEST_PORT);
|
|
105
|
+
uv_tcp_t* server = (uv_tcp_t*)malloc(sizeof *server);
|
|
106
|
+
int r;
|
|
107
|
+
|
|
108
|
+
ASSERT(server != NULL);
|
|
109
|
+
|
|
110
|
+
r = uv_tcp_init(uv_default_loop(), server);
|
|
111
|
+
ASSERT(r == 0);
|
|
112
|
+
r = uv_tcp_bind(server, addr);
|
|
113
|
+
ASSERT(r == 0);
|
|
114
|
+
|
|
115
|
+
r = uv_listen((uv_stream_t*)server, 128, connection_cb);
|
|
116
|
+
ASSERT(r == 0);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
static void read_cb(uv_stream_t* tcp, ssize_t nread, uv_buf_t buf) {
|
|
121
|
+
/* The server will not send anything, it should close gracefully. */
|
|
122
|
+
|
|
123
|
+
if (buf.base) {
|
|
124
|
+
free(buf.base);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
if (nread != -1) {
|
|
128
|
+
ASSERT(nread == 0);
|
|
129
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EAGAIN);
|
|
130
|
+
} else {
|
|
131
|
+
ASSERT(tcp != NULL);
|
|
132
|
+
ASSERT(nread == -1);
|
|
133
|
+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EOF);
|
|
134
|
+
uv_close((uv_handle_t*)tcp, close_cb);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
static void connect_cb(uv_connect_t* req, int status) {
|
|
140
|
+
int r;
|
|
141
|
+
|
|
142
|
+
ASSERT(req != NULL);
|
|
143
|
+
ASSERT(status == 0);
|
|
144
|
+
|
|
145
|
+
/* Not that the server will send anything, but otherwise we'll never know */
|
|
146
|
+
/* when the server closes the connection. */
|
|
147
|
+
r = uv_read_start((uv_stream_t*)(req->handle), alloc_cb, read_cb);
|
|
148
|
+
ASSERT(r == 0);
|
|
149
|
+
|
|
150
|
+
connect_cb_called++;
|
|
151
|
+
|
|
152
|
+
free(req);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
static void client_connect() {
|
|
157
|
+
struct sockaddr_in addr = uv_ip4_addr("127.0.0.1", TEST_PORT);
|
|
158
|
+
uv_tcp_t* client = (uv_tcp_t*)malloc(sizeof *client);
|
|
159
|
+
uv_connect_t* connect_req = malloc(sizeof *connect_req);
|
|
160
|
+
int r;
|
|
161
|
+
|
|
162
|
+
ASSERT(client != NULL);
|
|
163
|
+
ASSERT(connect_req != NULL);
|
|
164
|
+
|
|
165
|
+
r = uv_tcp_init(uv_default_loop(), client);
|
|
166
|
+
ASSERT(r == 0);
|
|
167
|
+
|
|
168
|
+
r = uv_tcp_connect(connect_req, client, addr, connect_cb);
|
|
169
|
+
ASSERT(r == 0);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
TEST_IMPL(delayed_accept) {
|
|
175
|
+
start_server();
|
|
176
|
+
|
|
177
|
+
client_connect();
|
|
178
|
+
client_connect();
|
|
179
|
+
|
|
180
|
+
uv_run(uv_default_loop());
|
|
181
|
+
|
|
182
|
+
ASSERT(connection_cb_called == 2);
|
|
183
|
+
ASSERT(do_accept_called == 2);
|
|
184
|
+
ASSERT(connect_cb_called == 2);
|
|
185
|
+
ASSERT(close_cb_called == 7);
|
|
186
|
+
|
|
187
|
+
return 0;
|
|
188
|
+
}
|