mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-23 18:21:54 +00:00
a84b9c62d1
- Improved test output formating: aligned, colored [ OK ] / [FAIL] - A failed assert will not interupt the whole test suite - bt_assert_fn_in_* are macros for testing input and output from the some function
78 lines
1.6 KiB
C
78 lines
1.6 KiB
C
/*
|
|
* BIRD Library -- Event Processing Tests
|
|
*
|
|
* (c) 2015 CZ.NIC z.s.p.o.
|
|
*
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
*/
|
|
|
|
|
|
#include "test/birdtest.h"
|
|
#include "test/birdtest_support.h" /* REMOVE ME */
|
|
|
|
#include "lib/event.h"
|
|
|
|
#define MAX_NUM 4
|
|
|
|
int event_check_points[MAX_NUM];
|
|
|
|
#define event_hook_body(num) \
|
|
do { \
|
|
bt_debug("Event Hook " #num "\n"); \
|
|
event_check_points[num] = 1; \
|
|
bt_assert_msg(event_check_points[num-1], "Did not keep the right order!"); \
|
|
} while (0)
|
|
|
|
static void event_hook_1(void *data) { event_hook_body(1); }
|
|
static void event_hook_2(void *data) { event_hook_body(2); }
|
|
static void event_hook_3(void *data) { event_hook_body(3); }
|
|
|
|
#define schedule_event(num) \
|
|
do { \
|
|
struct event *event_##num = ev_new(pool); \
|
|
event_##num->hook = event_hook_##num; \
|
|
ev_schedule(event_##num); \
|
|
} while (0)
|
|
|
|
static void
|
|
init_event_check_points(void)
|
|
{
|
|
int i;
|
|
event_check_points[0] = 1;
|
|
for (i = 1; i < MAX_NUM; i++)
|
|
event_check_points[i] = 0;
|
|
}
|
|
|
|
static int
|
|
t_ev_run_list(void)
|
|
{
|
|
int i;
|
|
|
|
resource_init();
|
|
init_list(&global_event_list);
|
|
struct pool *pool = rp_new(&root_pool, "Test pool");
|
|
init_event_check_points();
|
|
|
|
schedule_event(1);
|
|
schedule_event(2);
|
|
schedule_event(3);
|
|
|
|
ev_run_list(&global_event_list);
|
|
|
|
for (i = 1; i < MAX_NUM; i++)
|
|
bt_assert(event_check_points[i]);
|
|
|
|
return BT_SUCCESS;
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
bt_init(argc, argv);
|
|
|
|
bt_test_suite(t_ev_run_list, "Schedule and run 3 events in right order.");
|
|
|
|
return bt_end();
|
|
}
|
|
|