chiark / gitweb /
Playlists and misc
[disorder] / libtests / t-event.c
... / ...
CommitLineData
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2008, 2009 Richard Kettlewell
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18#include "test.h"
19#include "event.h"
20
21#include <time.h>
22#include <sys/time.h>
23
24static int run1, run2, run3;
25static ev_timeout_handle t1, t2, t3;
26
27static int callback1(ev_source *ev,
28 const struct timeval attribute((unused)) *now,
29 void attribute((unused)) *u) {
30 run1 = 1;
31 ev_timeout_cancel(ev, t2);
32 return 0;
33}
34
35static int callback2(ev_source attribute((unused)) *ev,
36 const struct timeval attribute((unused)) *now,
37 void attribute((unused)) *u) {
38 run2 = 1;
39 return 0;
40}
41
42static int callback3(ev_source attribute((unused)) *ev,
43 const struct timeval attribute((unused)) *now,
44 void attribute((unused)) *u) {
45 run3 = 1;
46 return 1;
47}
48
49static void test_event(void) {
50 struct timeval w;
51 ev_source *ev;
52
53 ev = ev_new();
54 w.tv_sec = xtime(0) + 2;
55 w.tv_usec = 0;
56 ev_timeout(ev, &t1, &w, callback1, 0);
57 w.tv_sec = xtime(0) + 3;
58 w.tv_usec = 0;
59 ev_timeout(ev, &t2, &w, callback2, 0);
60 w.tv_sec = xtime(0) + 4;
61 w.tv_usec = 0;
62 ev_timeout(ev, &t3, &w, callback3, 0);
63 check_integer(ev_run(ev), 1);
64 check_integer(run1, 1);
65 check_integer(run2, 0);
66 check_integer(run3, 1);
67}
68
69TEST(event);
70
71/*
72Local Variables:
73c-basic-offset:2
74comment-column:40
75fill-column:79
76indent-tabs-mode:nil
77End:
78*/