chiark / gitweb /
Fix service file to match installed elogind binary location
[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 int main(int argc, char **argv) {
243         log_parse_environment();
244         log_open();
245
246         test_config_parse_path();
247         test_config_parse_log_level();
248 #if 0 /// UNNEEDED by elogind
249         test_config_parse_log_facility();
250 #endif // 0
251         test_config_parse_iec_size();
252 #if 0 /// UNNEEDED by elogind
253         test_config_parse_si_size();
254 #endif // 0
255         test_config_parse_int();
256         test_config_parse_unsigned();
257         test_config_parse_strv();
258         test_config_parse_mode();
259         test_config_parse_sec();
260 #if 0 /// UNNEEDED by elogind
261         test_config_parse_nsec();
262         test_config_parse_iec_uint64();
263 #endif // 0
264
265         return 0;
266 }