]> git.meshlink.io Git - catta/blob - avahi-common/strlst-test.c
b725fa7fd1bdd5fa54cb38b976143356f096bac3
[catta] / avahi-common / strlst-test.c
1 /* $Id$ */
2
3 /***
4   This file is part of avahi.
5  
6   avahi is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as
8   published by the Free Software Foundation; either version 2.1 of the
9   License, or (at your option) any later version.
10  
11   avahi is distributed in the hope that it will be useful, but WITHOUT
12   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14   Public License for more details.
15  
16   You should have received a copy of the GNU Lesser General Public
17   License along with avahi; if not, write to the Free Software
18   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <assert.h>
28
29 #include "strlst.h"
30 #include "malloc.h"
31
32 int main(int argc, char *argv[]) {
33     char *t, *v;
34     uint8_t data[1024];
35     AvahiStringList *a = NULL, *b, *p;
36     size_t size, n;
37     int r;
38
39     a = avahi_string_list_new("prefix", "a", "b", NULL);
40     
41     a = avahi_string_list_add(a, "start");
42     a = avahi_string_list_add(a, "foo=99");
43     a = avahi_string_list_add(a, "bar");
44     a = avahi_string_list_add(a, "quux");
45     a = avahi_string_list_add_arbitrary(a, (const uint8_t*) "null\0null", 9);
46     a = avahi_string_list_add_printf(a, "seven=%i %c", 7, 'x');
47     a = avahi_string_list_add_pair(a, "blubb", "blaa");
48     a = avahi_string_list_add_pair(a, "uxknurz", NULL);
49     a = avahi_string_list_add_pair_arbitrary(a, "uxknurz2", (const uint8_t*) "blafasel\0oerks", 14);
50     
51     a = avahi_string_list_add(a, "end");
52
53     t = avahi_string_list_to_string(a);
54     printf("--%s--\n", t);
55     avahi_free(t);
56
57     size = avahi_string_list_serialize(a, data, sizeof(data));
58
59     printf("%u\n", size);
60
61     for (t = (char*) data, n = 0; n < size; n++, t++) {
62         if (*t <= 32)
63             printf("(%u)", *t);
64         else
65             printf("%c", *t);
66     }
67
68     printf("\n");
69     
70     b = avahi_string_list_parse(data, size);
71
72     assert(avahi_string_list_equal(a, b));
73     
74     t = avahi_string_list_to_string(b);
75     printf("--%s--\n", t);
76     avahi_free(t);
77
78     avahi_string_list_free(b);
79
80     b = avahi_string_list_copy(a);
81
82     assert(avahi_string_list_equal(a, b));
83
84     t = avahi_string_list_to_string(b);
85     printf("--%s--\n", t);
86     avahi_free(t);
87
88     p = avahi_string_list_find(a, "seven");
89     assert(p);
90     
91     r = avahi_string_list_get_pair(p, &t, &v, NULL);  
92     assert(r >= 0);
93     assert(t);
94     assert(v);
95     
96     printf("<%s>=<%s>\n", t, v);
97     avahi_free(t);
98     avahi_free(v);
99
100     p = avahi_string_list_find(a, "quux");
101     assert(p);
102
103     r = avahi_string_list_get_pair(p, &t, &v, NULL);
104     assert(r >= 0);
105     assert(t);
106     assert(!v);
107
108     printf("<%s>=<%s>\n", t, v);
109     avahi_free(t);
110     avahi_free(v);
111     
112     avahi_string_list_free(a);
113     avahi_string_list_free(b);
114
115     size = avahi_string_list_serialize(NULL, data, sizeof(data));
116     assert(size == 1);
117
118     a = avahi_string_list_parse(data, size);
119     assert(!a);
120     
121     return 0;
122 }