chiark / gitweb /
test-strv.c: added strv_merge test
[elogind.git] / src / test / test-strv.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7   Copyright 2013 Thomas H.P. Andersen
8
9   systemd is free software; you can redistribute it and/or modify it
10   under the terms of the GNU Lesser General Public License as published by
11   the Free Software Foundation; either version 2.1 of the License, or
12   (at your option) any later version.
13
14   systemd is distributed in the hope that it will be useful, but
15   WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17   Lesser General Public License for more details.
18
19   You should have received a copy of the GNU Lesser General Public License
20   along with systemd; If not, see <http://www.gnu.org/licenses/>.
21 ***/
22
23 #include <string.h>
24
25 #include "util.h"
26 #include "specifier.h"
27 #include "strv.h"
28
29 static void test_specifier_printf(void) {
30         char *w;
31
32         const Specifier table[] = {
33                 { 'a', specifier_string, (char*) "AAAA" },
34                 { 'b', specifier_string, (char*) "BBBB" },
35                 { 0, NULL, NULL }
36         };
37
38         w = specifier_printf("xxx a=%a b=%b yyy", table, NULL);
39         printf("<%s>\n", w);
40         free(w);
41 }
42
43 static void test_strv_find(void) {
44         const char * const input_table[] = {
45                 "one",
46                 "two",
47                 "three",
48                 NULL
49         };
50
51         assert(strv_find((char **)input_table, "three"));
52         assert(!strv_find((char **)input_table, "four"));
53 }
54
55 static void test_strv_find_prefix(void) {
56         const char * const input_table[] = {
57                 "one",
58                 "two",
59                 "three",
60                 NULL
61         };
62
63         assert(strv_find_prefix((char **)input_table, "o"));
64         assert(strv_find_prefix((char **)input_table, "one"));
65         assert(strv_find_prefix((char **)input_table, ""));
66         assert(!strv_find_prefix((char **)input_table, "xxx"));
67         assert(!strv_find_prefix((char **)input_table, "onee"));
68 }
69
70 static void test_strv_join(void) {
71         _cleanup_free_ char *p = NULL, *q = NULL, *r = NULL, *s = NULL, *t = NULL;
72
73         const char * const input_table_multiple[] = {
74                 "one",
75                 "two",
76                 "three",
77                 NULL
78         };
79         const char * const input_table_one[] = {
80                 "one",
81                 NULL
82         };
83         const char * const input_table_none[] = {
84                 NULL
85         };
86
87         p = strv_join((char **)input_table_multiple, ", ");
88         assert(streq(p, "one, two, three"));
89
90         q = strv_join((char **)input_table_multiple, ";");
91         assert(streq(q, "one;two;three"));
92
93         r = strv_join((char **)input_table_multiple, NULL);
94         assert(streq(r, "one two three"));
95
96         s = strv_join((char **)input_table_one, ", ");
97         assert(streq(s, "one"));
98
99         t = strv_join((char **)input_table_none, ", ");
100         assert(streq(t, ""));
101 }
102
103 static void test_strv_parse_nulstr(void) {
104         _cleanup_strv_free_ char **l = NULL;
105         const char nulstr[] = "fuck\0fuck2\0fuck3\0\0fuck5\0\0xxx";
106
107         l = strv_parse_nulstr(nulstr, sizeof(nulstr)-1);
108         puts("Parse nulstr:");
109         strv_print(l);
110
111         assert(streq(l[0], "fuck"));
112         assert(streq(l[1], "fuck2"));
113         assert(streq(l[2], "fuck3"));
114         assert(streq(l[3], ""));
115         assert(streq(l[4], "fuck5"));
116         assert(streq(l[5], ""));
117         assert(streq(l[6], "xxx"));
118 }
119
120 static void test_strv_overlap(void) {
121         const char * const input_table[] = {
122                 "one",
123                 "two",
124                 "three",
125                 NULL
126         };
127         const char * const input_table_overlap[] = {
128                 "two",
129                 NULL
130         };
131         const char * const input_table_unique[] = {
132                 "four",
133                 "five",
134                 "six",
135                 NULL
136         };
137
138         assert(strv_overlap((char **)input_table, (char**)input_table_overlap));
139         assert(!strv_overlap((char **)input_table, (char**)input_table_unique));
140 }
141
142 static void test_strv_sort(void) {
143         const char * const input_table[] = {
144                 "durian",
145                 "apple",
146                 "citrus",
147                  "CAPITAL LETTERS FIRST",
148                 "banana",
149                 NULL
150         };
151
152         strv_sort((char **)input_table);
153
154         assert(streq(input_table[0], "CAPITAL LETTERS FIRST"));
155         assert(streq(input_table[1], "apple"));
156         assert(streq(input_table[2], "banana"));
157         assert(streq(input_table[3], "citrus"));
158         assert(streq(input_table[4], "durian"));
159 }
160
161 static void test_strv_merge(void) {
162          _cleanup_strv_free_ char **a = NULL, **b = NULL, **c = NULL;
163
164          a = strv_new("abc", "def", "ghi", NULL);
165          b = strv_new("jkl", "mno", "pqr", NULL);
166
167          c = strv_merge(a, b);
168
169          assert(streq(c[0], "abc"));
170          assert(streq(c[1], "def"));
171          assert(streq(c[2], "ghi"));
172          assert(streq(c[3], "jkl"));
173          assert(streq(c[4], "mno"));
174          assert(streq(c[5], "pqr"));
175
176          assert(strv_length(c) == 6);
177 }
178
179 int main(int argc, char *argv[]) {
180         test_specifier_printf();
181         test_strv_find();
182         test_strv_find_prefix();
183         test_strv_join();
184         test_strv_parse_nulstr();
185         test_strv_overlap();
186         test_strv_sort();
187         test_strv_merge();
188
189         return 0;
190 }