]> git.meshlink.io Git - catta/blob - libavahi-core/strlst-test.c
6a9bbf62e30a595bdb45de81301288ef14d9743c
[catta] / libavahi-core / 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 #include <glib.h>
23 #include <stdio.h>
24
25 #include "strlst.h"
26
27 int main(int argc, char *argv[]) {
28     gchar *t;
29     guint8 data[1024];
30     AvahiStringList *a = NULL, *b;
31     guint size, n;
32
33     a = avahi_string_list_add(a, "start");
34     a = avahi_string_list_add(a, "foo");
35     a = avahi_string_list_add(a, "bar");
36     a = avahi_string_list_add(a, "quux");
37     a = avahi_string_list_add_arbitrary(a, (guint8*) "null\0null", 9);
38     a = avahi_string_list_add(a, "end");
39
40     t = avahi_string_list_to_string(a);
41     printf("--%s--\n", t);
42     g_free(t);
43
44     size = avahi_string_list_serialize(a, data, sizeof(data));
45
46     printf("%u\n", size);
47
48     for (t = (gchar*) data, n = 0; n < size; n++, t++) {
49         if (*t <= 32)
50             printf("(%u)", *t);
51         else
52             printf("%c", *t);
53     }
54
55     printf("\n");
56     
57     b = avahi_string_list_parse(data, size);
58
59     g_assert(avahi_string_list_equal(a, b));
60     
61     t = avahi_string_list_to_string(b);
62     printf("--%s--\n", t);
63     g_free(t);
64
65     avahi_string_list_free(b);
66
67     b = avahi_string_list_copy(a);
68
69     g_assert(avahi_string_list_equal(a, b));
70
71     t = avahi_string_list_to_string(b);
72     printf("--%s--\n", t);
73     g_free(t);
74     
75     avahi_string_list_free(a);
76     avahi_string_list_free(b);
77     
78     return 0;
79 }