tests: modify queue-test to use 'check' framework
[pulseaudio-raopUDP/pulseaudio-raop-alac.git] / src / tests / asyncmsgq-test.c
blob3bba7535cf1a34a10d18e269eaf9397d2dc1702f
1 /***
2 This file is part of PulseAudio.
4 PulseAudio is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published
6 by the Free Software Foundation; either version 2.1 of the License,
7 or (at your option) any later version.
9 PulseAudio is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with PulseAudio; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17 USA.
18 ***/
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
24 #include <assert.h>
25 #include <stdlib.h>
26 #include <unistd.h>
28 #include <check.h>
30 #include <pulsecore/asyncmsgq.h>
31 #include <pulsecore/thread.h>
32 #include <pulsecore/log.h>
33 #include <pulsecore/macro.h>
35 enum {
36 OPERATION_A,
37 OPERATION_B,
38 OPERATION_C,
39 QUIT
42 static void the_thread(void *_q) {
43 pa_asyncmsgq *q = _q;
44 int quit = 0;
46 do {
47 int code = 0;
49 pa_assert_se(pa_asyncmsgq_get(q, NULL, &code, NULL, NULL, NULL, 1) == 0);
51 switch (code) {
53 case OPERATION_A:
54 pa_log_info("Operation A");
55 break;
57 case OPERATION_B:
58 pa_log_info("Operation B");
59 break;
61 case OPERATION_C:
62 pa_log_info("Operation C");
63 break;
65 case QUIT:
66 pa_log_info("quit");
67 quit = 1;
68 break;
71 pa_asyncmsgq_done(q, 0);
73 } while (!quit);
76 START_TEST (asyncmsgq_test) {
77 pa_asyncmsgq *q;
78 pa_thread *t;
80 q = pa_asyncmsgq_new(0);
81 fail_unless(q != NULL);
83 t = pa_thread_new("test", the_thread, q);
84 fail_unless(t != NULL);
86 pa_log_info("Operation A post");
87 pa_asyncmsgq_post(q, NULL, OPERATION_A, NULL, 0, NULL, NULL);
89 pa_thread_yield();
91 pa_log_info("Operation B post");
92 pa_asyncmsgq_post(q, NULL, OPERATION_B, NULL, 0, NULL, NULL);
94 pa_thread_yield();
96 pa_log_info("Operation C send");
97 pa_asyncmsgq_send(q, NULL, OPERATION_C, NULL, 0, NULL);
99 pa_thread_yield();
101 pa_log_info("Quit post");
102 pa_asyncmsgq_post(q, NULL, QUIT, NULL, 0, NULL, NULL);
104 pa_thread_free(t);
106 pa_asyncmsgq_unref(q);
108 END_TEST
110 int main(int argc, char *argv[]) {
111 int failed = 0;
112 Suite *s;
113 TCase *tc;
114 SRunner *sr;
116 s = suite_create("Async Message Queue");
117 tc = tcase_create("asyncmsgq");
118 tcase_add_test(tc, asyncmsgq_test);
119 suite_add_tcase(s, tc);
121 sr = srunner_create(s);
122 srunner_run_all(sr, CK_NORMAL);
123 failed = srunner_ntests_failed(sr);
124 srunner_free(sr);
126 return (failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;