sink, source: Really set the fixed latency in set_fixed_latency_within_thread(),...
[platform/upstream/pulseaudio.git] / src / tests / queue-test.c
1 /***
2   This file is part of PulseAudio.
3
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.
8
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.
13
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 ***/
19
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23
24 #include <assert.h>
25 #include <stdlib.h>
26 #include <unistd.h>
27
28 #include <check.h>
29
30 #include <pulsecore/queue.h>
31 #include <pulsecore/log.h>
32 #include <pulsecore/macro.h>
33
34 START_TEST (queue_test) {
35     pa_queue *q;
36
37     q = pa_queue_new();
38     fail_unless(q != NULL);
39
40     fail_unless(pa_queue_isempty(q));
41
42     pa_queue_push(q, (void*) "eins");
43     pa_log("%s\n", (char*) pa_queue_pop(q));
44
45     fail_unless(pa_queue_isempty(q));
46
47     pa_queue_push(q, (void*) "zwei");
48     pa_queue_push(q, (void*) "drei");
49     pa_queue_push(q, (void*) "vier");
50
51     pa_log("%s\n", (char*) pa_queue_pop(q));
52     pa_log("%s\n", (char*) pa_queue_pop(q));
53
54     pa_queue_push(q, (void*) "fuenf");
55
56     pa_log("%s\n", (char*) pa_queue_pop(q));
57     pa_log("%s\n", (char*) pa_queue_pop(q));
58
59     fail_unless(pa_queue_isempty(q));
60
61     pa_queue_push(q, (void*) "sechs");
62     pa_queue_push(q, (void*) "sieben");
63
64     pa_queue_free(q, NULL);
65 }
66 END_TEST
67
68 int main(int argc, char *argv[]) {
69     int failed = 0;
70     Suite *s;
71     TCase *tc;
72     SRunner *sr;
73
74     s = suite_create("Queue");
75     tc = tcase_create("queue");
76     tcase_add_test(tc, queue_test);
77     suite_add_tcase(s, tc);
78
79     sr = srunner_create(s);
80     srunner_run_all(sr, CK_NORMAL);
81     failed = srunner_ntests_failed(sr);
82     srunner_free(sr);
83
84     return (failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
85 }