forked from cory/tildefriends
libuv 1.47.0.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4615 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
172
deps/libuv/test/test-timer.c
vendored
172
deps/libuv/test/test-timer.c
vendored
@ -41,7 +41,7 @@ static void once_close_cb(uv_handle_t* handle) {
|
||||
printf("ONCE_CLOSE_CB\n");
|
||||
|
||||
ASSERT_NOT_NULL(handle);
|
||||
ASSERT(0 == uv_is_active(handle));
|
||||
ASSERT_OK(uv_is_active(handle));
|
||||
|
||||
once_close_cb_called++;
|
||||
}
|
||||
@ -51,7 +51,7 @@ static void once_cb(uv_timer_t* handle) {
|
||||
printf("ONCE_CB %d\n", once_cb_called);
|
||||
|
||||
ASSERT_NOT_NULL(handle);
|
||||
ASSERT(0 == uv_is_active((uv_handle_t*) handle));
|
||||
ASSERT_OK(uv_is_active((uv_handle_t*) handle));
|
||||
|
||||
once_cb_called++;
|
||||
|
||||
@ -65,7 +65,7 @@ static void twice_close_cb(uv_handle_t* handle) {
|
||||
printf("TWICE_CLOSE_CB\n");
|
||||
|
||||
ASSERT_NOT_NULL(handle);
|
||||
ASSERT(0 == uv_is_active(handle));
|
||||
ASSERT_OK(uv_is_active(handle));
|
||||
|
||||
twice_close_cb_called++;
|
||||
}
|
||||
@ -74,7 +74,7 @@ static void twice_cb(uv_timer_t* handle) {
|
||||
printf("TWICE_CB %d\n", twice_cb_called);
|
||||
|
||||
ASSERT_NOT_NULL(handle);
|
||||
ASSERT(0 == uv_is_active((uv_handle_t*) handle));
|
||||
ASSERT_OK(uv_is_active((uv_handle_t*) handle));
|
||||
|
||||
twice_cb_called++;
|
||||
|
||||
@ -96,7 +96,7 @@ static void repeat_cb(uv_timer_t* handle) {
|
||||
printf("REPEAT_CB\n");
|
||||
|
||||
ASSERT_NOT_NULL(handle);
|
||||
ASSERT(1 == uv_is_active((uv_handle_t*) handle));
|
||||
ASSERT_EQ(1, uv_is_active((uv_handle_t*) handle));
|
||||
|
||||
repeat_cb_called++;
|
||||
|
||||
@ -119,41 +119,41 @@ TEST_IMPL(timer) {
|
||||
int r;
|
||||
|
||||
start_time = uv_now(uv_default_loop());
|
||||
ASSERT(0 < start_time);
|
||||
ASSERT_LT(0, start_time);
|
||||
|
||||
/* Let 10 timers time out in 500 ms total. */
|
||||
for (i = 0; i < ARRAY_SIZE(once_timers); i++) {
|
||||
once = once_timers + i;
|
||||
r = uv_timer_init(uv_default_loop(), once);
|
||||
ASSERT(r == 0);
|
||||
ASSERT_OK(r);
|
||||
r = uv_timer_start(once, once_cb, i * 50, 0);
|
||||
ASSERT(r == 0);
|
||||
ASSERT_OK(r);
|
||||
}
|
||||
|
||||
/* The 11th timer is a repeating timer that runs 4 times */
|
||||
r = uv_timer_init(uv_default_loop(), &repeat);
|
||||
ASSERT(r == 0);
|
||||
ASSERT_OK(r);
|
||||
r = uv_timer_start(&repeat, repeat_cb, 100, 100);
|
||||
ASSERT(r == 0);
|
||||
ASSERT_OK(r);
|
||||
|
||||
/* The 12th timer should not do anything. */
|
||||
r = uv_timer_init(uv_default_loop(), &never);
|
||||
ASSERT(r == 0);
|
||||
ASSERT_OK(r);
|
||||
r = uv_timer_start(&never, never_cb, 100, 100);
|
||||
ASSERT(r == 0);
|
||||
ASSERT_OK(r);
|
||||
r = uv_timer_stop(&never);
|
||||
ASSERT(r == 0);
|
||||
ASSERT_OK(r);
|
||||
uv_unref((uv_handle_t*)&never);
|
||||
|
||||
uv_run(uv_default_loop(), UV_RUN_DEFAULT);
|
||||
|
||||
ASSERT(once_cb_called == 10);
|
||||
ASSERT(once_close_cb_called == 10);
|
||||
ASSERT_EQ(10, once_cb_called);
|
||||
ASSERT_EQ(10, once_close_cb_called);
|
||||
printf("repeat_cb_called %d\n", repeat_cb_called);
|
||||
ASSERT(repeat_cb_called == 5);
|
||||
ASSERT(repeat_close_cb_called == 1);
|
||||
ASSERT_EQ(5, repeat_cb_called);
|
||||
ASSERT_EQ(1, repeat_close_cb_called);
|
||||
|
||||
ASSERT(500 <= uv_now(uv_default_loop()) - start_time);
|
||||
ASSERT_LE(500, uv_now(uv_default_loop()) - start_time);
|
||||
|
||||
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
||||
return 0;
|
||||
@ -165,15 +165,15 @@ TEST_IMPL(timer_start_twice) {
|
||||
int r;
|
||||
|
||||
r = uv_timer_init(uv_default_loop(), &once);
|
||||
ASSERT(r == 0);
|
||||
ASSERT_OK(r);
|
||||
r = uv_timer_start(&once, never_cb, 86400 * 1000, 0);
|
||||
ASSERT(r == 0);
|
||||
ASSERT_OK(r);
|
||||
r = uv_timer_start(&once, twice_cb, 10, 0);
|
||||
ASSERT(r == 0);
|
||||
ASSERT_OK(r);
|
||||
r = uv_run(uv_default_loop(), UV_RUN_DEFAULT);
|
||||
ASSERT(r == 0);
|
||||
ASSERT_OK(r);
|
||||
|
||||
ASSERT(twice_cb_called == 1);
|
||||
ASSERT_EQ(1, twice_cb_called);
|
||||
|
||||
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
||||
return 0;
|
||||
@ -183,10 +183,10 @@ TEST_IMPL(timer_start_twice) {
|
||||
TEST_IMPL(timer_init) {
|
||||
uv_timer_t handle;
|
||||
|
||||
ASSERT(0 == uv_timer_init(uv_default_loop(), &handle));
|
||||
ASSERT(0 == uv_timer_get_repeat(&handle));
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &handle));
|
||||
ASSERT_OK(uv_timer_get_repeat(&handle));
|
||||
ASSERT_UINT64_LE(0, uv_timer_get_due_in(&handle));
|
||||
ASSERT(0 == uv_is_active((uv_handle_t*) &handle));
|
||||
ASSERT_OK(uv_is_active((uv_handle_t*) &handle));
|
||||
|
||||
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
||||
return 0;
|
||||
@ -194,12 +194,12 @@ TEST_IMPL(timer_init) {
|
||||
|
||||
|
||||
static void order_cb_a(uv_timer_t *handle) {
|
||||
ASSERT(order_cb_called++ == *(int*)handle->data);
|
||||
ASSERT_EQ(order_cb_called++, *(int*)handle->data);
|
||||
}
|
||||
|
||||
|
||||
static void order_cb_b(uv_timer_t *handle) {
|
||||
ASSERT(order_cb_called++ == *(int*)handle->data);
|
||||
ASSERT_EQ(order_cb_called++, *(int*)handle->data);
|
||||
}
|
||||
|
||||
|
||||
@ -211,31 +211,31 @@ TEST_IMPL(timer_order) {
|
||||
|
||||
first = 0;
|
||||
second = 1;
|
||||
ASSERT(0 == uv_timer_init(uv_default_loop(), &handle_a));
|
||||
ASSERT(0 == uv_timer_init(uv_default_loop(), &handle_b));
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &handle_a));
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &handle_b));
|
||||
|
||||
/* Test for starting handle_a then handle_b */
|
||||
handle_a.data = &first;
|
||||
ASSERT(0 == uv_timer_start(&handle_a, order_cb_a, 0, 0));
|
||||
ASSERT_OK(uv_timer_start(&handle_a, order_cb_a, 0, 0));
|
||||
handle_b.data = &second;
|
||||
ASSERT(0 == uv_timer_start(&handle_b, order_cb_b, 0, 0));
|
||||
ASSERT(0 == uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
||||
ASSERT_OK(uv_timer_start(&handle_b, order_cb_b, 0, 0));
|
||||
ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
||||
|
||||
ASSERT(order_cb_called == 2);
|
||||
ASSERT_EQ(2, order_cb_called);
|
||||
|
||||
ASSERT(0 == uv_timer_stop(&handle_a));
|
||||
ASSERT(0 == uv_timer_stop(&handle_b));
|
||||
ASSERT_OK(uv_timer_stop(&handle_a));
|
||||
ASSERT_OK(uv_timer_stop(&handle_b));
|
||||
|
||||
/* Test for starting handle_b then handle_a */
|
||||
order_cb_called = 0;
|
||||
handle_b.data = &first;
|
||||
ASSERT(0 == uv_timer_start(&handle_b, order_cb_b, 0, 0));
|
||||
ASSERT_OK(uv_timer_start(&handle_b, order_cb_b, 0, 0));
|
||||
|
||||
handle_a.data = &second;
|
||||
ASSERT(0 == uv_timer_start(&handle_a, order_cb_a, 0, 0));
|
||||
ASSERT(0 == uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
||||
ASSERT_OK(uv_timer_start(&handle_a, order_cb_a, 0, 0));
|
||||
ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
||||
|
||||
ASSERT(order_cb_called == 2);
|
||||
ASSERT_EQ(2, order_cb_called);
|
||||
|
||||
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
||||
return 0;
|
||||
@ -243,7 +243,7 @@ TEST_IMPL(timer_order) {
|
||||
|
||||
|
||||
static void tiny_timer_cb(uv_timer_t* handle) {
|
||||
ASSERT(handle == &tiny_timer);
|
||||
ASSERT_PTR_EQ(handle, &tiny_timer);
|
||||
uv_close((uv_handle_t*) &tiny_timer, NULL);
|
||||
uv_close((uv_handle_t*) &huge_timer1, NULL);
|
||||
uv_close((uv_handle_t*) &huge_timer2, NULL);
|
||||
@ -251,16 +251,19 @@ static void tiny_timer_cb(uv_timer_t* handle) {
|
||||
|
||||
|
||||
TEST_IMPL(timer_huge_timeout) {
|
||||
ASSERT(0 == uv_timer_init(uv_default_loop(), &tiny_timer));
|
||||
ASSERT(0 == uv_timer_init(uv_default_loop(), &huge_timer1));
|
||||
ASSERT(0 == uv_timer_init(uv_default_loop(), &huge_timer2));
|
||||
ASSERT(0 == uv_timer_start(&tiny_timer, tiny_timer_cb, 1, 0));
|
||||
ASSERT(0 == uv_timer_start(&huge_timer1, tiny_timer_cb, 0xffffffffffffLL, 0));
|
||||
ASSERT(0 == uv_timer_start(&huge_timer2, tiny_timer_cb, (uint64_t) -1, 0));
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &tiny_timer));
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &huge_timer1));
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &huge_timer2));
|
||||
ASSERT_OK(uv_timer_start(&tiny_timer, tiny_timer_cb, 1, 0));
|
||||
ASSERT_OK(uv_timer_start(&huge_timer1,
|
||||
tiny_timer_cb,
|
||||
0xffffffffffffLL,
|
||||
0));
|
||||
ASSERT_OK(uv_timer_start(&huge_timer2, tiny_timer_cb, (uint64_t) -1, 0));
|
||||
ASSERT_UINT64_EQ(1, uv_timer_get_due_in(&tiny_timer));
|
||||
ASSERT_UINT64_EQ(281474976710655, uv_timer_get_due_in(&huge_timer1));
|
||||
ASSERT_UINT64_LE(0, uv_timer_get_due_in(&huge_timer2));
|
||||
ASSERT(0 == uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
||||
ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
||||
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
||||
return 0;
|
||||
}
|
||||
@ -270,9 +273,9 @@ static void huge_repeat_cb(uv_timer_t* handle) {
|
||||
static int ncalls;
|
||||
|
||||
if (ncalls == 0)
|
||||
ASSERT(handle == &huge_timer1);
|
||||
ASSERT_PTR_EQ(handle, &huge_timer1);
|
||||
else
|
||||
ASSERT(handle == &tiny_timer);
|
||||
ASSERT_PTR_EQ(handle, &tiny_timer);
|
||||
|
||||
if (++ncalls == 10) {
|
||||
uv_close((uv_handle_t*) &tiny_timer, NULL);
|
||||
@ -282,11 +285,11 @@ static void huge_repeat_cb(uv_timer_t* handle) {
|
||||
|
||||
|
||||
TEST_IMPL(timer_huge_repeat) {
|
||||
ASSERT(0 == uv_timer_init(uv_default_loop(), &tiny_timer));
|
||||
ASSERT(0 == uv_timer_init(uv_default_loop(), &huge_timer1));
|
||||
ASSERT(0 == uv_timer_start(&tiny_timer, huge_repeat_cb, 2, 2));
|
||||
ASSERT(0 == uv_timer_start(&huge_timer1, huge_repeat_cb, 1, (uint64_t) -1));
|
||||
ASSERT(0 == uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &tiny_timer));
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &huge_timer1));
|
||||
ASSERT_OK(uv_timer_start(&tiny_timer, huge_repeat_cb, 2, 2));
|
||||
ASSERT_OK(uv_timer_start(&huge_timer1, huge_repeat_cb, 1, (uint64_t) -1));
|
||||
ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
||||
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
||||
return 0;
|
||||
}
|
||||
@ -303,17 +306,17 @@ static void timer_run_once_timer_cb(uv_timer_t* handle) {
|
||||
TEST_IMPL(timer_run_once) {
|
||||
uv_timer_t timer_handle;
|
||||
|
||||
ASSERT(0 == uv_timer_init(uv_default_loop(), &timer_handle));
|
||||
ASSERT(0 == uv_timer_start(&timer_handle, timer_run_once_timer_cb, 0, 0));
|
||||
ASSERT(0 == uv_run(uv_default_loop(), UV_RUN_ONCE));
|
||||
ASSERT(1 == timer_run_once_timer_cb_called);
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &timer_handle));
|
||||
ASSERT_OK(uv_timer_start(&timer_handle, timer_run_once_timer_cb, 0, 0));
|
||||
ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE));
|
||||
ASSERT_EQ(1, timer_run_once_timer_cb_called);
|
||||
|
||||
ASSERT(0 == uv_timer_start(&timer_handle, timer_run_once_timer_cb, 1, 0));
|
||||
ASSERT(0 == uv_run(uv_default_loop(), UV_RUN_ONCE));
|
||||
ASSERT(2 == timer_run_once_timer_cb_called);
|
||||
ASSERT_OK(uv_timer_start(&timer_handle, timer_run_once_timer_cb, 1, 0));
|
||||
ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE));
|
||||
ASSERT_EQ(2, timer_run_once_timer_cb_called);
|
||||
|
||||
uv_close((uv_handle_t*) &timer_handle, NULL);
|
||||
ASSERT(0 == uv_run(uv_default_loop(), UV_RUN_ONCE));
|
||||
ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_ONCE));
|
||||
|
||||
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
||||
return 0;
|
||||
@ -323,10 +326,10 @@ TEST_IMPL(timer_run_once) {
|
||||
TEST_IMPL(timer_is_closing) {
|
||||
uv_timer_t handle;
|
||||
|
||||
ASSERT(0 == uv_timer_init(uv_default_loop(), &handle));
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &handle));
|
||||
uv_close((uv_handle_t *)&handle, NULL);
|
||||
|
||||
ASSERT(UV_EINVAL == uv_timer_start(&handle, never_cb, 100, 100));
|
||||
ASSERT_EQ(UV_EINVAL, uv_timer_start(&handle, never_cb, 100, 100));
|
||||
|
||||
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
||||
return 0;
|
||||
@ -336,8 +339,8 @@ TEST_IMPL(timer_is_closing) {
|
||||
TEST_IMPL(timer_null_callback) {
|
||||
uv_timer_t handle;
|
||||
|
||||
ASSERT(0 == uv_timer_init(uv_default_loop(), &handle));
|
||||
ASSERT(UV_EINVAL == uv_timer_start(&handle, NULL, 100, 100));
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &handle));
|
||||
ASSERT_EQ(UV_EINVAL, uv_timer_start(&handle, NULL, 100, 100));
|
||||
|
||||
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
||||
return 0;
|
||||
@ -349,7 +352,7 @@ static uint64_t timer_early_check_expected_time;
|
||||
|
||||
static void timer_early_check_cb(uv_timer_t* handle) {
|
||||
uint64_t hrtime = uv_hrtime() / 1000000;
|
||||
ASSERT(hrtime >= timer_early_check_expected_time);
|
||||
ASSERT_GE(hrtime, timer_early_check_expected_time);
|
||||
}
|
||||
|
||||
|
||||
@ -359,12 +362,15 @@ TEST_IMPL(timer_early_check) {
|
||||
|
||||
timer_early_check_expected_time = uv_now(uv_default_loop()) + timeout_ms;
|
||||
|
||||
ASSERT(0 == uv_timer_init(uv_default_loop(), &timer_handle));
|
||||
ASSERT(0 == uv_timer_start(&timer_handle, timer_early_check_cb, timeout_ms, 0));
|
||||
ASSERT(0 == uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &timer_handle));
|
||||
ASSERT_OK(uv_timer_start(&timer_handle,
|
||||
timer_early_check_cb,
|
||||
timeout_ms,
|
||||
0));
|
||||
ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
||||
|
||||
uv_close((uv_handle_t*) &timer_handle, NULL);
|
||||
ASSERT(0 == uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
||||
ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
||||
|
||||
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
||||
return 0;
|
||||
@ -378,11 +384,11 @@ TEST_IMPL(timer_no_double_call_once) {
|
||||
uv_timer_t timer_handle;
|
||||
const uint64_t timeout_ms = 10;
|
||||
|
||||
ASSERT_EQ(0, uv_timer_init(uv_default_loop(), &timer_handle));
|
||||
ASSERT_EQ(0, uv_timer_start(&timer_handle,
|
||||
timer_check_double_call,
|
||||
timeout_ms,
|
||||
timeout_ms));
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &timer_handle));
|
||||
ASSERT_OK(uv_timer_start(&timer_handle,
|
||||
timer_check_double_call,
|
||||
timeout_ms,
|
||||
timeout_ms));
|
||||
uv_sleep(timeout_ms * 2);
|
||||
ASSERT_EQ(1, uv_run(uv_default_loop(), UV_RUN_ONCE));
|
||||
ASSERT_EQ(1, timer_check_double_call_called);
|
||||
@ -395,11 +401,11 @@ TEST_IMPL(timer_no_double_call_nowait) {
|
||||
uv_timer_t timer_handle;
|
||||
const uint64_t timeout_ms = 10;
|
||||
|
||||
ASSERT_EQ(0, uv_timer_init(uv_default_loop(), &timer_handle));
|
||||
ASSERT_EQ(0, uv_timer_start(&timer_handle,
|
||||
timer_check_double_call,
|
||||
timeout_ms,
|
||||
timeout_ms));
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &timer_handle));
|
||||
ASSERT_OK(uv_timer_start(&timer_handle,
|
||||
timer_check_double_call,
|
||||
timeout_ms,
|
||||
timeout_ms));
|
||||
uv_sleep(timeout_ms * 2);
|
||||
ASSERT_EQ(1, uv_run(uv_default_loop(), UV_RUN_NOWAIT));
|
||||
ASSERT_EQ(1, timer_check_double_call_called);
|
||||
@ -414,7 +420,7 @@ TEST_IMPL(timer_no_run_on_unref) {
|
||||
ASSERT_OK(uv_timer_init(uv_default_loop(), &timer_handle));
|
||||
ASSERT_OK(uv_timer_start(&timer_handle, (uv_timer_cb) abort, 0, 0));
|
||||
uv_unref((uv_handle_t*) &timer_handle);
|
||||
ASSERT_EQ(uv_run(uv_default_loop(), UV_RUN_DEFAULT), 0);
|
||||
ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
||||
|
||||
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user