Branch data Line data Source code
1 : : /* SPDX-License-Identifier: LGPL-2.1+ */
2 : :
3 : : #include "alloc-util.h"
4 : : #include "log.h"
5 : : #include "specifier.h"
6 : : #include "string-util.h"
7 : : #include "strv.h"
8 : : #include "tests.h"
9 : :
10 : 24 : static void test_specifier_escape_one(const char *a, const char *b) {
11 : 24 : _cleanup_free_ char *x = NULL;
12 : :
13 : 24 : x = specifier_escape(a);
14 [ - + ]: 24 : assert_se(streq_ptr(x, b));
15 : 24 : }
16 : :
17 : 4 : static void test_specifier_escape(void) {
18 : 4 : test_specifier_escape_one(NULL, NULL);
19 : 4 : test_specifier_escape_one("", "");
20 : 4 : test_specifier_escape_one("%", "%%");
21 : 4 : test_specifier_escape_one("foo bar", "foo bar");
22 : 4 : test_specifier_escape_one("foo%bar", "foo%%bar");
23 : 4 : test_specifier_escape_one("%%%%%", "%%%%%%%%%%");
24 : 4 : }
25 : :
26 : 24 : static void test_specifier_escape_strv_one(char **a, char **b) {
27 : 24 : _cleanup_strv_free_ char **x = NULL;
28 : :
29 [ - + ]: 24 : assert_se(specifier_escape_strv(a, &x) >= 0);
30 [ - + ]: 24 : assert_se(strv_equal(x, b));
31 : 24 : }
32 : :
33 : 4 : static void test_specifier_escape_strv(void) {
34 : 4 : test_specifier_escape_strv_one(NULL, NULL);
35 : 4 : test_specifier_escape_strv_one(STRV_MAKE(NULL), STRV_MAKE(NULL));
36 : 4 : test_specifier_escape_strv_one(STRV_MAKE(""), STRV_MAKE(""));
37 : 4 : test_specifier_escape_strv_one(STRV_MAKE("foo"), STRV_MAKE("foo"));
38 : 4 : test_specifier_escape_strv_one(STRV_MAKE("%"), STRV_MAKE("%%"));
39 : 4 : test_specifier_escape_strv_one(STRV_MAKE("foo", "%", "foo%", "%foo", "foo%foo", "quux", "%%%"), STRV_MAKE("foo", "%%", "foo%%", "%%foo", "foo%%foo", "quux", "%%%%%%"));
40 : 4 : }
41 : :
42 : 4 : int main(int argc, char *argv[]) {
43 : 4 : test_setup_logging(LOG_DEBUG);
44 : :
45 : 4 : test_specifier_escape();
46 : 4 : test_specifier_escape_strv();
47 : :
48 : 4 : return 0;
49 : : }
|