Branch data Line data Source code
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 <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 : :
32 : 1 : int main(int argc, char*argv[]) {
33 : : pa_modargs *ma;
34 : : pa_proplist *a, *b, *c, *d;
35 : : char *s, *t, *u, *v;
36 : : const char *text;
37 : 1 : const char *x[] = { "foo", NULL };
38 : :
39 [ - + ]: 1 : if (!getenv("MAKE_CHECK"))
40 : 0 : pa_log_set_level(PA_LOG_DEBUG);
41 : :
42 : 1 : a = pa_proplist_new();
43 [ - + ]: 1 : pa_assert_se(pa_proplist_sets(a, PA_PROP_MEDIA_TITLE, "Brandenburgische Konzerte") == 0);
44 [ - + ]: 1 : pa_assert_se(pa_proplist_sets(a, PA_PROP_MEDIA_ARTIST, "Johann Sebastian Bach") == 0);
45 : :
46 : 1 : b = pa_proplist_new();
47 [ - + ]: 1 : pa_assert_se(pa_proplist_sets(b, PA_PROP_MEDIA_TITLE, "Goldbergvariationen") == 0);
48 [ - + ]: 1 : pa_assert_se(pa_proplist_set(b, PA_PROP_MEDIA_ICON, "\0\1\2\3\4\5\6\7", 8) == 0);
49 : :
50 : 1 : pa_proplist_update(a, PA_UPDATE_MERGE, b);
51 : :
52 [ - + ]: 1 : pa_assert_se(!pa_proplist_gets(a, PA_PROP_MEDIA_ICON));
53 : :
54 : 2 : pa_log_debug("%s", pa_strnull(pa_proplist_gets(a, PA_PROP_MEDIA_TITLE)));
55 [ - + ]: 1 : pa_assert_se(pa_proplist_unset(b, PA_PROP_MEDIA_TITLE) == 0);
56 : :
57 : 1 : s = pa_proplist_to_string(a);
58 : 1 : t = pa_proplist_to_string(b);
59 : 1 : pa_log_debug("---\n%s---\n%s", s, t);
60 : :
61 : 1 : c = pa_proplist_from_string(s);
62 : 1 : u = pa_proplist_to_string(c);
63 [ - + ]: 1 : pa_assert_se(pa_streq(s, u));
64 : :
65 : 1 : pa_xfree(s);
66 : 1 : pa_xfree(t);
67 : 1 : pa_xfree(u);
68 : :
69 : 1 : pa_proplist_free(a);
70 : 1 : pa_proplist_free(b);
71 : 1 : pa_proplist_free(c);
72 : :
73 : 1 : text = " eins = zwei drei = \"\\\"vier\\\"\" fuenf=sechs sieben ='\\a\\c\\h\\t\\'\\\"' neun= hex:0123456789abCDef ";
74 : :
75 : 1 : pa_log_debug("%s", text);
76 : 1 : d = pa_proplist_from_string(text);
77 : 1 : v = pa_proplist_to_string(d);
78 : 1 : pa_proplist_free(d);
79 : 1 : pa_log_debug("%s", v);
80 : 1 : d = pa_proplist_from_string(v);
81 : 1 : pa_xfree(v);
82 : 1 : v = pa_proplist_to_string(d);
83 : 1 : pa_proplist_free(d);
84 : 1 : pa_log_debug("%s", v);
85 : 1 : pa_xfree(v);
86 : :
87 [ - + ]: 1 : pa_assert_se(ma = pa_modargs_new("foo='foobar=waldo foo2=\"lj\\\"dhflh\" foo3=\"kjlskj\\'\"'", x));
88 [ - + ]: 1 : pa_assert_se(a = pa_proplist_new());
89 : :
90 [ - + ]: 1 : pa_assert_se(pa_modargs_get_proplist(ma, "foo", a, PA_UPDATE_REPLACE) >= 0);
91 : :
92 : 1 : pa_log_debug("%s", v = pa_proplist_to_string(a));
93 : 1 : pa_xfree(v);
94 : :
95 : 1 : pa_proplist_free(a);
96 : 1 : pa_modargs_free(ma);
97 : :
98 : : return 0;
99 : : }
|