4 * Copyright Red Hat, Inc. 2012
7 * Paolo Bonzini <pbonzini@redhat.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
10 * See the COPYING.LIB file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "block/aio.h"
15 #include "qapi/error.h"
16 #include "qemu/timer.h"
17 #include "qemu/sockets.h"
18 #include "qemu/error-report.h"
20 static AioContext
*ctx
;
27 } EventNotifierTestData
;
29 /* Wait until event notifier becomes inactive */
30 static void wait_until_inactive(EventNotifierTestData
*data
)
32 while (data
->active
> 0) {
37 /* Simple callbacks for testing. */
47 QEMUClockType clock_type
;
54 static void bh_test_cb(void *opaque
)
56 BHTestData
*data
= opaque
;
57 if (++data
->n
< data
->max
) {
58 qemu_bh_schedule(data
->bh
);
62 static void timer_test_cb(void *opaque
)
64 TimerTestData
*data
= opaque
;
65 if (++data
->n
< data
->max
) {
66 timer_mod(&data
->timer
,
67 qemu_clock_get_ns(data
->clock_type
) + data
->ns
);
71 static void dummy_io_handler_read(EventNotifier
*e
)
75 static void bh_delete_cb(void *opaque
)
77 BHTestData
*data
= opaque
;
78 if (++data
->n
< data
->max
) {
79 qemu_bh_schedule(data
->bh
);
81 qemu_bh_delete(data
->bh
);
86 static void event_ready_cb(EventNotifier
*e
)
88 EventNotifierTestData
*data
= container_of(e
, EventNotifierTestData
, e
);
89 g_assert(event_notifier_test_and_clear(e
));
91 if (data
->active
> 0) {
94 if (data
->auto_set
&& data
->active
) {
95 event_notifier_set(e
);
99 /* Tests using aio_*. */
102 QemuMutex start_lock
;
103 EventNotifier notifier
;
104 bool thread_acquired
;
107 static void *test_acquire_thread(void *opaque
)
109 AcquireTestData
*data
= opaque
;
111 /* Wait for other thread to let us start */
112 qemu_mutex_lock(&data
->start_lock
);
113 qemu_mutex_unlock(&data
->start_lock
);
115 /* event_notifier_set might be called either before or after
116 * the main thread's call to poll(). The test case's outcome
117 * should be the same in either case.
119 event_notifier_set(&data
->notifier
);
120 aio_context_acquire(ctx
);
121 aio_context_release(ctx
);
123 data
->thread_acquired
= true; /* success, we got here */
128 static void set_event_notifier(AioContext
*ctx
, EventNotifier
*notifier
,
129 EventNotifierHandler
*handler
)
131 aio_set_event_notifier(ctx
, notifier
, false, handler
);
134 static void dummy_notifier_read(EventNotifier
*n
)
136 event_notifier_test_and_clear(n
);
139 static void test_acquire(void)
142 AcquireTestData data
;
144 /* Dummy event notifier ensures aio_poll() will block */
145 event_notifier_init(&data
.notifier
, false);
146 set_event_notifier(ctx
, &data
.notifier
, dummy_notifier_read
);
147 g_assert(!aio_poll(ctx
, false)); /* consume aio_notify() */
149 qemu_mutex_init(&data
.start_lock
);
150 qemu_mutex_lock(&data
.start_lock
);
151 data
.thread_acquired
= false;
153 qemu_thread_create(&thread
, "test_acquire_thread",
155 &data
, QEMU_THREAD_JOINABLE
);
157 /* Block in aio_poll(), let other thread kick us and acquire context */
158 aio_context_acquire(ctx
);
159 qemu_mutex_unlock(&data
.start_lock
); /* let the thread run */
160 g_assert(aio_poll(ctx
, true));
161 g_assert(!data
.thread_acquired
);
162 aio_context_release(ctx
);
164 qemu_thread_join(&thread
);
165 set_event_notifier(ctx
, &data
.notifier
, NULL
);
166 event_notifier_cleanup(&data
.notifier
);
168 g_assert(data
.thread_acquired
);
171 static void test_bh_schedule(void)
173 BHTestData data
= { .n
= 0 };
174 data
.bh
= aio_bh_new(ctx
, bh_test_cb
, &data
);
176 qemu_bh_schedule(data
.bh
);
177 g_assert_cmpint(data
.n
, ==, 0);
179 g_assert(aio_poll(ctx
, true));
180 g_assert_cmpint(data
.n
, ==, 1);
182 g_assert(!aio_poll(ctx
, false));
183 g_assert_cmpint(data
.n
, ==, 1);
184 qemu_bh_delete(data
.bh
);
187 static void test_bh_schedule10(void)
189 BHTestData data
= { .n
= 0, .max
= 10 };
190 data
.bh
= aio_bh_new(ctx
, bh_test_cb
, &data
);
192 qemu_bh_schedule(data
.bh
);
193 g_assert_cmpint(data
.n
, ==, 0);
195 g_assert(aio_poll(ctx
, false));
196 g_assert_cmpint(data
.n
, ==, 1);
198 g_assert(aio_poll(ctx
, true));
199 g_assert_cmpint(data
.n
, ==, 2);
201 while (data
.n
< 10) {
204 g_assert_cmpint(data
.n
, ==, 10);
206 g_assert(!aio_poll(ctx
, false));
207 g_assert_cmpint(data
.n
, ==, 10);
208 qemu_bh_delete(data
.bh
);
211 static void test_bh_cancel(void)
213 BHTestData data
= { .n
= 0 };
214 data
.bh
= aio_bh_new(ctx
, bh_test_cb
, &data
);
216 qemu_bh_schedule(data
.bh
);
217 g_assert_cmpint(data
.n
, ==, 0);
219 qemu_bh_cancel(data
.bh
);
220 g_assert_cmpint(data
.n
, ==, 0);
222 g_assert(!aio_poll(ctx
, false));
223 g_assert_cmpint(data
.n
, ==, 0);
224 qemu_bh_delete(data
.bh
);
227 static void test_bh_delete(void)
229 BHTestData data
= { .n
= 0 };
230 data
.bh
= aio_bh_new(ctx
, bh_test_cb
, &data
);
232 qemu_bh_schedule(data
.bh
);
233 g_assert_cmpint(data
.n
, ==, 0);
235 qemu_bh_delete(data
.bh
);
236 g_assert_cmpint(data
.n
, ==, 0);
238 g_assert(!aio_poll(ctx
, false));
239 g_assert_cmpint(data
.n
, ==, 0);
242 static void test_bh_delete_from_cb(void)
244 BHTestData data1
= { .n
= 0, .max
= 1 };
246 data1
.bh
= aio_bh_new(ctx
, bh_delete_cb
, &data1
);
248 qemu_bh_schedule(data1
.bh
);
249 g_assert_cmpint(data1
.n
, ==, 0);
251 while (data1
.n
< data1
.max
) {
254 g_assert_cmpint(data1
.n
, ==, data1
.max
);
255 g_assert(data1
.bh
== NULL
);
257 g_assert(!aio_poll(ctx
, false));
260 static void test_bh_delete_from_cb_many(void)
262 BHTestData data1
= { .n
= 0, .max
= 1 };
263 BHTestData data2
= { .n
= 0, .max
= 3 };
264 BHTestData data3
= { .n
= 0, .max
= 2 };
265 BHTestData data4
= { .n
= 0, .max
= 4 };
267 data1
.bh
= aio_bh_new(ctx
, bh_delete_cb
, &data1
);
268 data2
.bh
= aio_bh_new(ctx
, bh_delete_cb
, &data2
);
269 data3
.bh
= aio_bh_new(ctx
, bh_delete_cb
, &data3
);
270 data4
.bh
= aio_bh_new(ctx
, bh_delete_cb
, &data4
);
272 qemu_bh_schedule(data1
.bh
);
273 qemu_bh_schedule(data2
.bh
);
274 qemu_bh_schedule(data3
.bh
);
275 qemu_bh_schedule(data4
.bh
);
276 g_assert_cmpint(data1
.n
, ==, 0);
277 g_assert_cmpint(data2
.n
, ==, 0);
278 g_assert_cmpint(data3
.n
, ==, 0);
279 g_assert_cmpint(data4
.n
, ==, 0);
281 g_assert(aio_poll(ctx
, false));
282 g_assert_cmpint(data1
.n
, ==, 1);
283 g_assert_cmpint(data2
.n
, ==, 1);
284 g_assert_cmpint(data3
.n
, ==, 1);
285 g_assert_cmpint(data4
.n
, ==, 1);
286 g_assert(data1
.bh
== NULL
);
288 while (data1
.n
< data1
.max
||
289 data2
.n
< data2
.max
||
290 data3
.n
< data3
.max
||
291 data4
.n
< data4
.max
) {
294 g_assert_cmpint(data1
.n
, ==, data1
.max
);
295 g_assert_cmpint(data2
.n
, ==, data2
.max
);
296 g_assert_cmpint(data3
.n
, ==, data3
.max
);
297 g_assert_cmpint(data4
.n
, ==, data4
.max
);
298 g_assert(data1
.bh
== NULL
);
299 g_assert(data2
.bh
== NULL
);
300 g_assert(data3
.bh
== NULL
);
301 g_assert(data4
.bh
== NULL
);
304 static void test_bh_flush(void)
306 BHTestData data
= { .n
= 0 };
307 data
.bh
= aio_bh_new(ctx
, bh_test_cb
, &data
);
309 qemu_bh_schedule(data
.bh
);
310 g_assert_cmpint(data
.n
, ==, 0);
312 g_assert(aio_poll(ctx
, true));
313 g_assert_cmpint(data
.n
, ==, 1);
315 g_assert(!aio_poll(ctx
, false));
316 g_assert_cmpint(data
.n
, ==, 1);
317 qemu_bh_delete(data
.bh
);
320 static void test_set_event_notifier(void)
322 EventNotifierTestData data
= { .n
= 0, .active
= 0 };
323 event_notifier_init(&data
.e
, false);
324 set_event_notifier(ctx
, &data
.e
, event_ready_cb
);
325 g_assert(!aio_poll(ctx
, false));
326 g_assert_cmpint(data
.n
, ==, 0);
328 set_event_notifier(ctx
, &data
.e
, NULL
);
329 g_assert(!aio_poll(ctx
, false));
330 g_assert_cmpint(data
.n
, ==, 0);
331 event_notifier_cleanup(&data
.e
);
334 static void test_wait_event_notifier(void)
336 EventNotifierTestData data
= { .n
= 0, .active
= 1 };
337 event_notifier_init(&data
.e
, false);
338 set_event_notifier(ctx
, &data
.e
, event_ready_cb
);
339 while (aio_poll(ctx
, false));
340 g_assert_cmpint(data
.n
, ==, 0);
341 g_assert_cmpint(data
.active
, ==, 1);
343 event_notifier_set(&data
.e
);
344 g_assert(aio_poll(ctx
, false));
345 g_assert_cmpint(data
.n
, ==, 1);
346 g_assert_cmpint(data
.active
, ==, 0);
348 g_assert(!aio_poll(ctx
, false));
349 g_assert_cmpint(data
.n
, ==, 1);
350 g_assert_cmpint(data
.active
, ==, 0);
352 set_event_notifier(ctx
, &data
.e
, NULL
);
353 g_assert(!aio_poll(ctx
, false));
354 g_assert_cmpint(data
.n
, ==, 1);
356 event_notifier_cleanup(&data
.e
);
359 static void test_flush_event_notifier(void)
361 EventNotifierTestData data
= { .n
= 0, .active
= 10, .auto_set
= true };
362 event_notifier_init(&data
.e
, false);
363 set_event_notifier(ctx
, &data
.e
, event_ready_cb
);
364 while (aio_poll(ctx
, false));
365 g_assert_cmpint(data
.n
, ==, 0);
366 g_assert_cmpint(data
.active
, ==, 10);
368 event_notifier_set(&data
.e
);
369 g_assert(aio_poll(ctx
, false));
370 g_assert_cmpint(data
.n
, ==, 1);
371 g_assert_cmpint(data
.active
, ==, 9);
372 g_assert(aio_poll(ctx
, false));
374 wait_until_inactive(&data
);
375 g_assert_cmpint(data
.n
, ==, 10);
376 g_assert_cmpint(data
.active
, ==, 0);
377 g_assert(!aio_poll(ctx
, false));
379 set_event_notifier(ctx
, &data
.e
, NULL
);
380 g_assert(!aio_poll(ctx
, false));
381 event_notifier_cleanup(&data
.e
);
384 static void test_aio_external_client(void)
388 for (i
= 1; i
< 3; i
++) {
389 EventNotifierTestData data
= { .n
= 0, .active
= 10, .auto_set
= true };
390 event_notifier_init(&data
.e
, false);
391 aio_set_event_notifier(ctx
, &data
.e
, true, event_ready_cb
);
392 event_notifier_set(&data
.e
);
393 for (j
= 0; j
< i
; j
++) {
394 aio_disable_external(ctx
);
396 for (j
= 0; j
< i
; j
++) {
397 assert(!aio_poll(ctx
, false));
398 assert(event_notifier_test_and_clear(&data
.e
));
399 event_notifier_set(&data
.e
);
400 aio_enable_external(ctx
);
402 assert(aio_poll(ctx
, false));
403 set_event_notifier(ctx
, &data
.e
, NULL
);
404 event_notifier_cleanup(&data
.e
);
408 static void test_wait_event_notifier_noflush(void)
410 EventNotifierTestData data
= { .n
= 0 };
411 EventNotifierTestData dummy
= { .n
= 0, .active
= 1 };
413 event_notifier_init(&data
.e
, false);
414 set_event_notifier(ctx
, &data
.e
, event_ready_cb
);
416 g_assert(!aio_poll(ctx
, false));
417 g_assert_cmpint(data
.n
, ==, 0);
419 /* Until there is an active descriptor, aio_poll may or may not call
420 * event_ready_cb. Still, it must not block. */
421 event_notifier_set(&data
.e
);
422 g_assert(aio_poll(ctx
, true));
425 /* An active event notifier forces aio_poll to look at EventNotifiers. */
426 event_notifier_init(&dummy
.e
, false);
427 set_event_notifier(ctx
, &dummy
.e
, event_ready_cb
);
429 event_notifier_set(&data
.e
);
430 g_assert(aio_poll(ctx
, false));
431 g_assert_cmpint(data
.n
, ==, 1);
432 g_assert(!aio_poll(ctx
, false));
433 g_assert_cmpint(data
.n
, ==, 1);
435 event_notifier_set(&data
.e
);
436 g_assert(aio_poll(ctx
, false));
437 g_assert_cmpint(data
.n
, ==, 2);
438 g_assert(!aio_poll(ctx
, false));
439 g_assert_cmpint(data
.n
, ==, 2);
441 event_notifier_set(&dummy
.e
);
442 wait_until_inactive(&dummy
);
443 g_assert_cmpint(data
.n
, ==, 2);
444 g_assert_cmpint(dummy
.n
, ==, 1);
445 g_assert_cmpint(dummy
.active
, ==, 0);
447 set_event_notifier(ctx
, &dummy
.e
, NULL
);
448 event_notifier_cleanup(&dummy
.e
);
450 set_event_notifier(ctx
, &data
.e
, NULL
);
451 g_assert(!aio_poll(ctx
, false));
452 g_assert_cmpint(data
.n
, ==, 2);
454 event_notifier_cleanup(&data
.e
);
457 static void test_timer_schedule(void)
459 TimerTestData data
= { .n
= 0, .ctx
= ctx
, .ns
= SCALE_MS
* 750LL,
461 .clock_type
= QEMU_CLOCK_REALTIME
};
464 /* aio_poll will not block to wait for timers to complete unless it has
465 * an fd to wait on. Fixing this breaks other tests. So create a dummy one.
467 event_notifier_init(&e
, false);
468 set_event_notifier(ctx
, &e
, dummy_io_handler_read
);
469 aio_poll(ctx
, false);
471 aio_timer_init(ctx
, &data
.timer
, data
.clock_type
,
472 SCALE_NS
, timer_test_cb
, &data
);
473 timer_mod(&data
.timer
,
474 qemu_clock_get_ns(data
.clock_type
) +
477 g_assert_cmpint(data
.n
, ==, 0);
479 /* timer_mod may well cause an event notifer to have gone off,
482 do {} while (aio_poll(ctx
, false));
484 g_assert(!aio_poll(ctx
, false));
485 g_assert_cmpint(data
.n
, ==, 0);
487 g_usleep(1 * G_USEC_PER_SEC
);
488 g_assert_cmpint(data
.n
, ==, 0);
490 g_assert(aio_poll(ctx
, false));
491 g_assert_cmpint(data
.n
, ==, 1);
493 /* timer_mod called by our callback */
494 do {} while (aio_poll(ctx
, false));
496 g_assert(!aio_poll(ctx
, false));
497 g_assert_cmpint(data
.n
, ==, 1);
499 g_assert(aio_poll(ctx
, true));
500 g_assert_cmpint(data
.n
, ==, 2);
502 /* As max is now 2, an event notifier should not have gone off */
504 g_assert(!aio_poll(ctx
, false));
505 g_assert_cmpint(data
.n
, ==, 2);
507 set_event_notifier(ctx
, &e
, NULL
);
508 event_notifier_cleanup(&e
);
510 timer_del(&data
.timer
);
513 /* Now the same tests, using the context as a GSource. They are
514 * very similar to the ones above, with g_main_context_iteration
515 * replacing aio_poll. However:
516 * - sometimes both the AioContext and the glib main loop wake
517 * themselves up. Hence, some "g_assert(!aio_poll(ctx, false));"
518 * are replaced by "while (g_main_context_iteration(NULL, false));".
519 * - there is no exact replacement for a blocking wait.
520 * "while (g_main_context_iteration(NULL, true)" seems to work,
521 * but it is not documented _why_ it works. For these tests a
522 * non-blocking loop like "while (g_main_context_iteration(NULL, false)"
523 * works well, and that's what I am using.
526 static void test_source_flush(void)
528 g_assert(!g_main_context_iteration(NULL
, false));
530 while (g_main_context_iteration(NULL
, false));
531 g_assert(!g_main_context_iteration(NULL
, false));
534 static void test_source_bh_schedule(void)
536 BHTestData data
= { .n
= 0 };
537 data
.bh
= aio_bh_new(ctx
, bh_test_cb
, &data
);
539 qemu_bh_schedule(data
.bh
);
540 g_assert_cmpint(data
.n
, ==, 0);
542 g_assert(g_main_context_iteration(NULL
, true));
543 g_assert_cmpint(data
.n
, ==, 1);
545 g_assert(!g_main_context_iteration(NULL
, false));
546 g_assert_cmpint(data
.n
, ==, 1);
547 qemu_bh_delete(data
.bh
);
550 static void test_source_bh_schedule10(void)
552 BHTestData data
= { .n
= 0, .max
= 10 };
553 data
.bh
= aio_bh_new(ctx
, bh_test_cb
, &data
);
555 qemu_bh_schedule(data
.bh
);
556 g_assert_cmpint(data
.n
, ==, 0);
558 g_assert(g_main_context_iteration(NULL
, false));
559 g_assert_cmpint(data
.n
, ==, 1);
561 g_assert(g_main_context_iteration(NULL
, true));
562 g_assert_cmpint(data
.n
, ==, 2);
564 while (g_main_context_iteration(NULL
, false));
565 g_assert_cmpint(data
.n
, ==, 10);
567 g_assert(!g_main_context_iteration(NULL
, false));
568 g_assert_cmpint(data
.n
, ==, 10);
569 qemu_bh_delete(data
.bh
);
572 static void test_source_bh_cancel(void)
574 BHTestData data
= { .n
= 0 };
575 data
.bh
= aio_bh_new(ctx
, bh_test_cb
, &data
);
577 qemu_bh_schedule(data
.bh
);
578 g_assert_cmpint(data
.n
, ==, 0);
580 qemu_bh_cancel(data
.bh
);
581 g_assert_cmpint(data
.n
, ==, 0);
583 while (g_main_context_iteration(NULL
, false));
584 g_assert_cmpint(data
.n
, ==, 0);
585 qemu_bh_delete(data
.bh
);
588 static void test_source_bh_delete(void)
590 BHTestData data
= { .n
= 0 };
591 data
.bh
= aio_bh_new(ctx
, bh_test_cb
, &data
);
593 qemu_bh_schedule(data
.bh
);
594 g_assert_cmpint(data
.n
, ==, 0);
596 qemu_bh_delete(data
.bh
);
597 g_assert_cmpint(data
.n
, ==, 0);
599 while (g_main_context_iteration(NULL
, false));
600 g_assert_cmpint(data
.n
, ==, 0);
603 static void test_source_bh_delete_from_cb(void)
605 BHTestData data1
= { .n
= 0, .max
= 1 };
607 data1
.bh
= aio_bh_new(ctx
, bh_delete_cb
, &data1
);
609 qemu_bh_schedule(data1
.bh
);
610 g_assert_cmpint(data1
.n
, ==, 0);
612 g_main_context_iteration(NULL
, true);
613 g_assert_cmpint(data1
.n
, ==, data1
.max
);
614 g_assert(data1
.bh
== NULL
);
616 g_assert(!g_main_context_iteration(NULL
, false));
619 static void test_source_bh_delete_from_cb_many(void)
621 BHTestData data1
= { .n
= 0, .max
= 1 };
622 BHTestData data2
= { .n
= 0, .max
= 3 };
623 BHTestData data3
= { .n
= 0, .max
= 2 };
624 BHTestData data4
= { .n
= 0, .max
= 4 };
626 data1
.bh
= aio_bh_new(ctx
, bh_delete_cb
, &data1
);
627 data2
.bh
= aio_bh_new(ctx
, bh_delete_cb
, &data2
);
628 data3
.bh
= aio_bh_new(ctx
, bh_delete_cb
, &data3
);
629 data4
.bh
= aio_bh_new(ctx
, bh_delete_cb
, &data4
);
631 qemu_bh_schedule(data1
.bh
);
632 qemu_bh_schedule(data2
.bh
);
633 qemu_bh_schedule(data3
.bh
);
634 qemu_bh_schedule(data4
.bh
);
635 g_assert_cmpint(data1
.n
, ==, 0);
636 g_assert_cmpint(data2
.n
, ==, 0);
637 g_assert_cmpint(data3
.n
, ==, 0);
638 g_assert_cmpint(data4
.n
, ==, 0);
640 g_assert(g_main_context_iteration(NULL
, false));
641 g_assert_cmpint(data1
.n
, ==, 1);
642 g_assert_cmpint(data2
.n
, ==, 1);
643 g_assert_cmpint(data3
.n
, ==, 1);
644 g_assert_cmpint(data4
.n
, ==, 1);
645 g_assert(data1
.bh
== NULL
);
647 while (g_main_context_iteration(NULL
, false));
648 g_assert_cmpint(data1
.n
, ==, data1
.max
);
649 g_assert_cmpint(data2
.n
, ==, data2
.max
);
650 g_assert_cmpint(data3
.n
, ==, data3
.max
);
651 g_assert_cmpint(data4
.n
, ==, data4
.max
);
652 g_assert(data1
.bh
== NULL
);
653 g_assert(data2
.bh
== NULL
);
654 g_assert(data3
.bh
== NULL
);
655 g_assert(data4
.bh
== NULL
);
658 static void test_source_bh_flush(void)
660 BHTestData data
= { .n
= 0 };
661 data
.bh
= aio_bh_new(ctx
, bh_test_cb
, &data
);
663 qemu_bh_schedule(data
.bh
);
664 g_assert_cmpint(data
.n
, ==, 0);
666 g_assert(g_main_context_iteration(NULL
, true));
667 g_assert_cmpint(data
.n
, ==, 1);
669 g_assert(!g_main_context_iteration(NULL
, false));
670 g_assert_cmpint(data
.n
, ==, 1);
671 qemu_bh_delete(data
.bh
);
674 static void test_source_set_event_notifier(void)
676 EventNotifierTestData data
= { .n
= 0, .active
= 0 };
677 event_notifier_init(&data
.e
, false);
678 set_event_notifier(ctx
, &data
.e
, event_ready_cb
);
679 while (g_main_context_iteration(NULL
, false));
680 g_assert_cmpint(data
.n
, ==, 0);
682 set_event_notifier(ctx
, &data
.e
, NULL
);
683 while (g_main_context_iteration(NULL
, false));
684 g_assert_cmpint(data
.n
, ==, 0);
685 event_notifier_cleanup(&data
.e
);
688 static void test_source_wait_event_notifier(void)
690 EventNotifierTestData data
= { .n
= 0, .active
= 1 };
691 event_notifier_init(&data
.e
, false);
692 set_event_notifier(ctx
, &data
.e
, event_ready_cb
);
693 while (g_main_context_iteration(NULL
, false));
694 g_assert_cmpint(data
.n
, ==, 0);
695 g_assert_cmpint(data
.active
, ==, 1);
697 event_notifier_set(&data
.e
);
698 g_assert(g_main_context_iteration(NULL
, false));
699 g_assert_cmpint(data
.n
, ==, 1);
700 g_assert_cmpint(data
.active
, ==, 0);
702 while (g_main_context_iteration(NULL
, false));
703 g_assert_cmpint(data
.n
, ==, 1);
704 g_assert_cmpint(data
.active
, ==, 0);
706 set_event_notifier(ctx
, &data
.e
, NULL
);
707 while (g_main_context_iteration(NULL
, false));
708 g_assert_cmpint(data
.n
, ==, 1);
710 event_notifier_cleanup(&data
.e
);
713 static void test_source_flush_event_notifier(void)
715 EventNotifierTestData data
= { .n
= 0, .active
= 10, .auto_set
= true };
716 event_notifier_init(&data
.e
, false);
717 set_event_notifier(ctx
, &data
.e
, event_ready_cb
);
718 while (g_main_context_iteration(NULL
, false));
719 g_assert_cmpint(data
.n
, ==, 0);
720 g_assert_cmpint(data
.active
, ==, 10);
722 event_notifier_set(&data
.e
);
723 g_assert(g_main_context_iteration(NULL
, false));
724 g_assert_cmpint(data
.n
, ==, 1);
725 g_assert_cmpint(data
.active
, ==, 9);
726 g_assert(g_main_context_iteration(NULL
, false));
728 while (g_main_context_iteration(NULL
, false));
729 g_assert_cmpint(data
.n
, ==, 10);
730 g_assert_cmpint(data
.active
, ==, 0);
731 g_assert(!g_main_context_iteration(NULL
, false));
733 set_event_notifier(ctx
, &data
.e
, NULL
);
734 while (g_main_context_iteration(NULL
, false));
735 event_notifier_cleanup(&data
.e
);
738 static void test_source_wait_event_notifier_noflush(void)
740 EventNotifierTestData data
= { .n
= 0 };
741 EventNotifierTestData dummy
= { .n
= 0, .active
= 1 };
743 event_notifier_init(&data
.e
, false);
744 set_event_notifier(ctx
, &data
.e
, event_ready_cb
);
746 while (g_main_context_iteration(NULL
, false));
747 g_assert_cmpint(data
.n
, ==, 0);
749 /* Until there is an active descriptor, glib may or may not call
750 * event_ready_cb. Still, it must not block. */
751 event_notifier_set(&data
.e
);
752 g_main_context_iteration(NULL
, true);
755 /* An active event notifier forces aio_poll to look at EventNotifiers. */
756 event_notifier_init(&dummy
.e
, false);
757 set_event_notifier(ctx
, &dummy
.e
, event_ready_cb
);
759 event_notifier_set(&data
.e
);
760 g_assert(g_main_context_iteration(NULL
, false));
761 g_assert_cmpint(data
.n
, ==, 1);
762 g_assert(!g_main_context_iteration(NULL
, false));
763 g_assert_cmpint(data
.n
, ==, 1);
765 event_notifier_set(&data
.e
);
766 g_assert(g_main_context_iteration(NULL
, false));
767 g_assert_cmpint(data
.n
, ==, 2);
768 g_assert(!g_main_context_iteration(NULL
, false));
769 g_assert_cmpint(data
.n
, ==, 2);
771 event_notifier_set(&dummy
.e
);
772 while (g_main_context_iteration(NULL
, false));
773 g_assert_cmpint(data
.n
, ==, 2);
774 g_assert_cmpint(dummy
.n
, ==, 1);
775 g_assert_cmpint(dummy
.active
, ==, 0);
777 set_event_notifier(ctx
, &dummy
.e
, NULL
);
778 event_notifier_cleanup(&dummy
.e
);
780 set_event_notifier(ctx
, &data
.e
, NULL
);
781 while (g_main_context_iteration(NULL
, false));
782 g_assert_cmpint(data
.n
, ==, 2);
784 event_notifier_cleanup(&data
.e
);
787 static void test_source_timer_schedule(void)
789 TimerTestData data
= { .n
= 0, .ctx
= ctx
, .ns
= SCALE_MS
* 750LL,
791 .clock_type
= QEMU_CLOCK_REALTIME
};
795 /* aio_poll will not block to wait for timers to complete unless it has
796 * an fd to wait on. Fixing this breaks other tests. So create a dummy one.
798 event_notifier_init(&e
, false);
799 set_event_notifier(ctx
, &e
, dummy_io_handler_read
);
800 do {} while (g_main_context_iteration(NULL
, false));
802 aio_timer_init(ctx
, &data
.timer
, data
.clock_type
,
803 SCALE_NS
, timer_test_cb
, &data
);
804 expiry
= qemu_clock_get_ns(data
.clock_type
) +
806 timer_mod(&data
.timer
, expiry
);
808 g_assert_cmpint(data
.n
, ==, 0);
810 g_usleep(1 * G_USEC_PER_SEC
);
811 g_assert_cmpint(data
.n
, ==, 0);
813 g_assert(g_main_context_iteration(NULL
, true));
814 g_assert_cmpint(data
.n
, ==, 1);
818 g_main_context_iteration(NULL
, true);
821 g_assert_cmpint(data
.n
, ==, 2);
822 g_assert(qemu_clock_get_ns(data
.clock_type
) > expiry
);
824 set_event_notifier(ctx
, &e
, NULL
);
825 event_notifier_cleanup(&e
);
827 timer_del(&data
.timer
);
833 int main(int argc
, char **argv
)
835 Error
*local_error
= NULL
;
840 ctx
= aio_context_new(&local_error
);
842 error_reportf_err(local_error
, "Failed to create AIO Context: ");
845 src
= aio_get_g_source(ctx
);
846 g_source_attach(src
, NULL
);
849 while (g_main_context_iteration(NULL
, false));
851 g_test_init(&argc
, &argv
, NULL
);
852 g_test_add_func("/aio/acquire", test_acquire
);
853 g_test_add_func("/aio/bh/schedule", test_bh_schedule
);
854 g_test_add_func("/aio/bh/schedule10", test_bh_schedule10
);
855 g_test_add_func("/aio/bh/cancel", test_bh_cancel
);
856 g_test_add_func("/aio/bh/delete", test_bh_delete
);
857 g_test_add_func("/aio/bh/callback-delete/one", test_bh_delete_from_cb
);
858 g_test_add_func("/aio/bh/callback-delete/many", test_bh_delete_from_cb_many
);
859 g_test_add_func("/aio/bh/flush", test_bh_flush
);
860 g_test_add_func("/aio/event/add-remove", test_set_event_notifier
);
861 g_test_add_func("/aio/event/wait", test_wait_event_notifier
);
862 g_test_add_func("/aio/event/wait/no-flush-cb", test_wait_event_notifier_noflush
);
863 g_test_add_func("/aio/event/flush", test_flush_event_notifier
);
864 g_test_add_func("/aio/external-client", test_aio_external_client
);
865 g_test_add_func("/aio/timer/schedule", test_timer_schedule
);
867 g_test_add_func("/aio-gsource/flush", test_source_flush
);
868 g_test_add_func("/aio-gsource/bh/schedule", test_source_bh_schedule
);
869 g_test_add_func("/aio-gsource/bh/schedule10", test_source_bh_schedule10
);
870 g_test_add_func("/aio-gsource/bh/cancel", test_source_bh_cancel
);
871 g_test_add_func("/aio-gsource/bh/delete", test_source_bh_delete
);
872 g_test_add_func("/aio-gsource/bh/callback-delete/one", test_source_bh_delete_from_cb
);
873 g_test_add_func("/aio-gsource/bh/callback-delete/many", test_source_bh_delete_from_cb_many
);
874 g_test_add_func("/aio-gsource/bh/flush", test_source_bh_flush
);
875 g_test_add_func("/aio-gsource/event/add-remove", test_source_set_event_notifier
);
876 g_test_add_func("/aio-gsource/event/wait", test_source_wait_event_notifier
);
877 g_test_add_func("/aio-gsource/event/wait/no-flush-cb", test_source_wait_event_notifier_noflush
);
878 g_test_add_func("/aio-gsource/event/flush", test_source_flush_event_notifier
);
879 g_test_add_func("/aio-gsource/timer/schedule", test_source_timer_schedule
);