]> code.delx.au - pulseaudio/blob - src/tests/proplist-test.c
module-switch-on-port-available: Use new find best port function
[pulseaudio] / src / tests / proplist-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 <stdio.h>
25
26 #include <check.h>
27
28 #include <pulse/proplist.h>
29 #include <pulse/xmalloc.h>
30 #include <pulsecore/macro.h>
31 #include <pulsecore/core-util.h>
32 #include <pulsecore/modargs.h>
33
34 START_TEST (proplist_test) {
35 pa_modargs *ma;
36 pa_proplist *a, *b, *c, *d;
37 char *s, *t, *u, *v;
38 const char *text;
39 const char *x[] = { "foo", NULL };
40
41 a = pa_proplist_new();
42 fail_unless(pa_proplist_sets(a, PA_PROP_MEDIA_TITLE, "Brandenburgische Konzerte") == 0);
43 fail_unless(pa_proplist_sets(a, PA_PROP_MEDIA_ARTIST, "Johann Sebastian Bach") == 0);
44
45 b = pa_proplist_new();
46 fail_unless(pa_proplist_sets(b, PA_PROP_MEDIA_TITLE, "Goldbergvariationen") == 0);
47 fail_unless(pa_proplist_set(b, PA_PROP_MEDIA_ICON, "\0\1\2\3\4\5\6\7", 8) == 0);
48
49 pa_proplist_update(a, PA_UPDATE_MERGE, b);
50
51 fail_unless(!pa_proplist_gets(a, PA_PROP_MEDIA_ICON));
52
53 pa_log_debug("%s", pa_strnull(pa_proplist_gets(a, PA_PROP_MEDIA_TITLE)));
54 fail_unless(pa_proplist_unset(b, PA_PROP_MEDIA_TITLE) == 0);
55
56 s = pa_proplist_to_string(a);
57 t = pa_proplist_to_string(b);
58 pa_log_debug("---\n%s---\n%s", s, t);
59
60 c = pa_proplist_from_string(s);
61 u = pa_proplist_to_string(c);
62 fail_unless(pa_streq(s, u));
63
64 pa_xfree(s);
65 pa_xfree(t);
66 pa_xfree(u);
67
68 pa_proplist_free(a);
69 pa_proplist_free(b);
70 pa_proplist_free(c);
71
72 text = " eins = zwei drei = \"\\\"vier\\\"\" fuenf=sechs sieben ='\\a\\c\\h\\t\\'\\\"' neun= hex:0123456789abCDef ";
73
74 pa_log_debug("%s", text);
75 d = pa_proplist_from_string(text);
76 v = pa_proplist_to_string(d);
77 pa_proplist_free(d);
78 pa_log_debug("%s", v);
79 d = pa_proplist_from_string(v);
80 pa_xfree(v);
81 v = pa_proplist_to_string(d);
82 pa_proplist_free(d);
83 pa_log_debug("%s", v);
84 pa_xfree(v);
85
86 ma = pa_modargs_new("foo='foobar=waldo foo2=\"lj\\\"dhflh\" foo3=\"kjlskj\\'\"'", x);
87 fail_unless(ma != NULL);
88 a = pa_proplist_new();
89 fail_unless(a != NULL);
90
91 fail_unless(pa_modargs_get_proplist(ma, "foo", a, PA_UPDATE_REPLACE) >= 0);
92
93 pa_log_debug("%s", v = pa_proplist_to_string(a));
94 pa_xfree(v);
95
96 pa_proplist_free(a);
97 pa_modargs_free(ma);
98 }
99 END_TEST
100
101 int main(int argc, char *argv[]) {
102 int failed = 0;
103 Suite *s;
104 TCase *tc;
105 SRunner *sr;
106
107 if (!getenv("MAKE_CHECK"))
108 pa_log_set_level(PA_LOG_DEBUG);
109
110 s = suite_create("Property List");
111 tc = tcase_create("propertylist");
112 tcase_add_test(tc, proplist_test);
113 suite_add_tcase(s, tc);
114
115 sr = srunner_create(s);
116 srunner_run_all(sr, CK_NORMAL);
117 failed = srunner_ntests_failed(sr);
118 srunner_free(sr);
119
120 return (failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
121 }