chiark / gitweb /
test-conf-parser: add some basic tests for config_parse()
[elogind.git] / src / test / test-conf-parser.c
1 /***
2   This file is part of systemd.
3
4   Copyright 2015 Ronny Chevalier
5
6   systemd is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as published by
8   the Free Software Foundation; either version 2.1 of the License, or
9   (at your option) any later version.
10
11   systemd is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   Lesser General Public License for more details.
15
16   You should have received a copy of the GNU Lesser General Public License
17   along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include "conf-parser.h"
21 #include "log.h"
22 #include "macro.h"
23 #include "string-util.h"
24 #include "strv.h"
25 #include "util.h"
26
27 static void test_config_parse_path_one(const char *rvalue, const char *expected) {
28         char *path = NULL;
29
30         assert_se(config_parse_path("unit", "filename", 1, "section", 1, "lvalue", 0, rvalue, &path, NULL) >= 0);
31         assert_se(streq_ptr(expected, path));
32
33         free(path);
34 }
35
36 static void test_config_parse_log_level_one(const char *rvalue, int expected) {
37         int log_level = 0;
38
39         assert_se(config_parse_log_level("unit", "filename", 1, "section", 1, "lvalue", 0, rvalue, &log_level, NULL) >= 0);
40         assert_se(expected == log_level);
41 }
42
43 #if 0 /// UNNEEDED by elogind
44 static void test_config_parse_log_facility_one(const char *rvalue, int expected) {
45         int log_facility = 0;
46
47         assert_se(config_parse_log_facility("unit", "filename", 1, "section", 1, "lvalue", 0, rvalue, &log_facility, NULL) >= 0);
48         assert_se(expected == log_facility);
49 }
50 #endif // 0
51
52 static void test_config_parse_iec_size_one(const char *rvalue, size_t expected) {
53         size_t iec_size = 0;
54
55         assert_se(config_parse_iec_size("unit", "filename", 1, "section", 1, "lvalue", 0, rvalue, &iec_size, NULL) >= 0);
56         assert_se(expected == iec_size);
57 }
58
59 #if 0 /// UNNEEDED by elogind
60 static void test_config_parse_si_size_one(const char *rvalue, size_t expected) {
61         size_t si_size = 0;
62
63         assert_se(config_parse_si_size("unit", "filename", 1, "section", 1, "lvalue", 0, rvalue, &si_size, NULL) >= 0);
64         assert_se(expected == si_size);
65 }
66 #endif // 0
67
68 static void test_config_parse_int_one(const char *rvalue, int expected) {
69         int v = -1;
70
71         assert_se(config_parse_int("unit", "filename", 1, "section", 1, "lvalue", 0, rvalue, &v, NULL) >= 0);
72         assert_se(expected == v);
73 }
74
75 static void test_config_parse_unsigned_one(const char *rvalue, unsigned expected) {
76         unsigned v = 0;
77
78         assert_se(config_parse_unsigned("unit", "filename", 1, "section", 1, "lvalue", 0, rvalue, &v, NULL) >= 0);
79         assert_se(expected == v);
80 }
81
82 static void test_config_parse_strv_one(const char *rvalue, char **expected) {
83         char **strv = 0;
84
85         assert_se(config_parse_strv("unit", "filename", 1, "section", 1, "lvalue", 0, rvalue, &strv, NULL) >= 0);
86         assert_se(strv_equal(expected, strv));
87
88         strv_free(strv);
89 }
90
91 static void test_config_parse_mode_one(const char *rvalue, mode_t expected) {
92         mode_t v = 0;
93
94         assert_se(config_parse_mode("unit", "filename", 1, "section", 1, "lvalue", 0, rvalue, &v, NULL) >= 0);
95         assert_se(expected == v);
96 }
97
98 static void test_config_parse_sec_one(const char *rvalue, usec_t expected) {
99         usec_t v = 0;
100
101         assert_se(config_parse_sec("unit", "filename", 1, "section", 1, "lvalue", 0, rvalue, &v, NULL) >= 0);
102         assert_se(expected == v);
103 }
104
105 #if 0 /// UNNEEDED by elogind
106 static void test_config_parse_nsec_one(const char *rvalue, nsec_t expected) {
107         nsec_t v = 0;
108
109         assert_se(config_parse_nsec("unit", "filename", 1, "nsection", 1, "lvalue", 0, rvalue, &v, NULL) >= 0);
110         assert_se(expected == v);
111 }
112 #endif // 0
113
114 static void test_config_parse_path(void) {
115         test_config_parse_path_one("/path", "/path");
116         test_config_parse_path_one("/path//////////", "/path");
117         test_config_parse_path_one("///path/foo///bar////bar//", "/path/foo/bar/bar");
118         test_config_parse_path_one("/path/\xc3\x80", "/path/\xc3\x80");
119
120         test_config_parse_path_one("not_absolute/path", NULL);
121         test_config_parse_path_one("/path/\xc3\x7f", NULL);
122 }
123
124 static void test_config_parse_log_level(void) {
125         test_config_parse_log_level_one("debug", LOG_DEBUG);
126         test_config_parse_log_level_one("info", LOG_INFO);
127
128         test_config_parse_log_level_one("garbage", 0);
129 }
130
131 #if 0 /// UNNEEDED by elogind
132 static void test_config_parse_log_facility(void) {
133         test_config_parse_log_facility_one("mail", LOG_MAIL);
134         test_config_parse_log_facility_one("user", LOG_USER);
135
136         test_config_parse_log_facility_one("garbage", 0);
137 }
138 #endif // 0
139
140 static void test_config_parse_iec_size(void) {
141         test_config_parse_iec_size_one("1024", 1024);
142         test_config_parse_iec_size_one("2K", 2048);
143         test_config_parse_iec_size_one("10M", 10 * 1024 * 1024);
144         test_config_parse_iec_size_one("1G", 1 * 1024 * 1024 * 1024);
145         test_config_parse_iec_size_one("0G", 0);
146         test_config_parse_iec_size_one("0", 0);
147
148         test_config_parse_iec_size_one("-982", 0);
149         test_config_parse_iec_size_one("49874444198739873000000G", 0);
150         test_config_parse_iec_size_one("garbage", 0);
151 }
152
153 #if 0 /// UNNEEDED by elogind
154 static void test_config_parse_si_size(void) {
155         test_config_parse_si_size_one("1024", 1024);
156         test_config_parse_si_size_one("2K", 2000);
157         test_config_parse_si_size_one("10M", 10 * 1000 * 1000);
158         test_config_parse_si_size_one("1G", 1 * 1000 * 1000 * 1000);
159         test_config_parse_si_size_one("0G", 0);
160         test_config_parse_si_size_one("0", 0);
161
162         test_config_parse_si_size_one("-982", 0);
163         test_config_parse_si_size_one("49874444198739873000000G", 0);
164         test_config_parse_si_size_one("garbage", 0);
165 }
166 #endif // 0
167
168 static void test_config_parse_int(void) {
169         test_config_parse_int_one("1024", 1024);
170         test_config_parse_int_one("-1024", -1024);
171         test_config_parse_int_one("0", 0);
172
173         test_config_parse_int_one("99999999999999999999999999999999999999999999999999999999", -1);
174         test_config_parse_int_one("-99999999999999999999999999999999999999999999999999999999", -1);
175         test_config_parse_int_one("1G", -1);
176         test_config_parse_int_one("garbage", -1);
177 }
178
179 static void test_config_parse_unsigned(void) {
180         test_config_parse_unsigned_one("10241024", 10241024);
181         test_config_parse_unsigned_one("1024", 1024);
182         test_config_parse_unsigned_one("0", 0);
183
184         test_config_parse_unsigned_one("99999999999999999999999999999999999999999999999999999999", 0);
185         test_config_parse_unsigned_one("1G", 0);
186         test_config_parse_unsigned_one("garbage", 0);
187         test_config_parse_unsigned_one("1000garbage", 0);
188 }
189
190 static void test_config_parse_strv(void) {
191         test_config_parse_strv_one("", STRV_MAKE_EMPTY);
192         test_config_parse_strv_one("foo", STRV_MAKE("foo"));
193         test_config_parse_strv_one("foo bar foo", STRV_MAKE("foo", "bar", "foo"));
194         test_config_parse_strv_one("\"foo bar\" foo", STRV_MAKE("foo bar", "foo"));
195         test_config_parse_strv_one("\xc3\x80", STRV_MAKE("\xc3\x80"));
196         test_config_parse_strv_one("\xc3\x7f", STRV_MAKE_EMPTY);
197 }
198
199 static void test_config_parse_mode(void) {
200         test_config_parse_mode_one("777", 0777);
201         test_config_parse_mode_one("644", 0644);
202
203         test_config_parse_mode_one("-777", 0);
204         test_config_parse_mode_one("999", 0);
205         test_config_parse_mode_one("garbage", 0);
206         test_config_parse_mode_one("777garbage", 0);
207         test_config_parse_mode_one("777 garbage", 0);
208 }
209
210 static void test_config_parse_sec(void) {
211         test_config_parse_sec_one("1", 1 * USEC_PER_SEC);
212         test_config_parse_sec_one("1s", 1 * USEC_PER_SEC);
213         test_config_parse_sec_one("100ms", 100 * USEC_PER_MSEC);
214         test_config_parse_sec_one("5min 20s", 5 * 60 * USEC_PER_SEC + 20 * USEC_PER_SEC);
215
216         test_config_parse_sec_one("-1", 0);
217         test_config_parse_sec_one("10foo", 0);
218         test_config_parse_sec_one("garbage", 0);
219 }
220
221 #if 0 /// UNNEEDED by elogind
222 static void test_config_parse_nsec(void) {
223         test_config_parse_nsec_one("1", 1);
224         test_config_parse_nsec_one("1s", 1 * NSEC_PER_SEC);
225         test_config_parse_nsec_one("100ms", 100 * NSEC_PER_MSEC);
226         test_config_parse_nsec_one("5min 20s", 5 * 60 * NSEC_PER_SEC + 20 * NSEC_PER_SEC);
227
228         test_config_parse_nsec_one("-1", 0);
229         test_config_parse_nsec_one("10foo", 0);
230         test_config_parse_nsec_one("garbage", 0);
231 }
232
233 static void test_config_parse_iec_uint64(void) {
234         uint64_t offset = 0;
235         assert_se(config_parse_iec_uint64(NULL, "/this/file", 11, "Section", 22, "Size", 0, "4M", &offset, NULL) == 0);
236         assert_se(offset == 4 * 1024 * 1024);
237
238         assert_se(config_parse_iec_uint64(NULL, "/this/file", 11, "Section", 22, "Size", 0, "4.5M", &offset, NULL) == 0);
239 }
240 #endif // 0
241
242 static const char* const config_file[] = {
243         "[Section]\n"
244         "setting1=1\n",
245
246         "[Section]\n"
247         "setting1=1",        /* no terminating newline */
248
249         "\n\n\n\n[Section]\n\n\n"
250         "setting1=1",        /* some whitespace, no terminating newline */
251
252         "[Section]\n"
253         "[Section]\n"
254         "setting1=1\n"
255         "setting1=2\n"
256         "setting1=1\n",      /* repeated settings */
257
258         "[Section]\n"
259         "setting1=1\\\n"     /* normal continuation */
260         "2\\\n"
261         "3\n",
262
263         "[Section]\n"
264         "setting1=1\\\\\\\n" /* continuation with trailing escape symbols */
265         "\\\\2\n",           /* note that C requires one level of escaping, so the
266                               * parser gets "…1 BS BS BS NL BS BS 2 NL", which
267                               * it translates into "…1 BS BS SP BS BS 2" */
268 };
269
270 static void test_config_parse(unsigned i, const char *s) {
271         char name[] = "/tmp/test-conf-parser.XXXXXX";
272         int fd, r;
273         _cleanup_fclose_ FILE *f = NULL;
274         _cleanup_free_ char *setting1 = NULL;
275
276         const ConfigTableItem items[] = {
277                 { "Section", "setting1",  config_parse_string,   0, &setting1},
278                 {}
279         };
280
281         log_info("== %s[%i] ==", __func__, i);
282
283         fd = mkostemp_safe(name);
284         assert_se(fd >= 0);
285         assert_se((size_t) write(fd, s, strlen(s)) == strlen(s));
286
287         assert_se(lseek(fd, 0, SEEK_SET) == 0);
288         assert_se(f = fdopen(fd, "r"));
289
290         /*
291         int config_parse(const char *unit,
292                          const char *filename,
293                          FILE *f,
294                          const char *sections,
295                          ConfigItemLookup lookup,
296                          const void *table,
297                          bool relaxed,
298                          bool allow_include,
299                          bool warn,
300                          void *userdata)
301         */
302
303         r = config_parse(NULL, name, f,
304                          "Section\0",
305                          config_item_table_lookup, items,
306                          false, false, true, NULL);
307         assert_se(r == 0);
308
309         switch (i) {
310         case 0 ... 3:
311                 assert_se(streq(setting1, "1"));
312                 break;
313
314         case 4:
315                 assert_se(streq(setting1, "1 2 3"));
316                 break;
317
318         case 5:
319                 assert_se(streq(setting1, "1\\\\ \\\\2"));
320                 break;
321         }
322 }
323
324 int main(int argc, char **argv) {
325         unsigned i;
326
327         log_parse_environment();
328         log_open();
329
330         test_config_parse_path();
331         test_config_parse_log_level();
332 #if 0 /// UNNEEDED by elogind
333         test_config_parse_log_facility();
334 #endif // 0
335         test_config_parse_iec_size();
336 #if 0 /// UNNEEDED by elogind
337         test_config_parse_si_size();
338 #endif // 0
339         test_config_parse_int();
340         test_config_parse_unsigned();
341         test_config_parse_strv();
342         test_config_parse_mode();
343         test_config_parse_sec();
344 #if 0 /// UNNEEDED by elogind
345         test_config_parse_nsec();
346         test_config_parse_iec_uint64();
347 #endif // 0
348
349         for (i = 0; i < ELEMENTSOF(config_file); i++)
350                 test_config_parse(i, config_file[i]);
351
352         return 0;
353 }