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