summaryrefslogtreecommitdiffstats
path: root/src/test/test-sd-path.c
blob: 4f23e3bb695b9c0d77b6b7368815b98d7fc36c0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* SPDX-License-Identifier: LGPL-2.1-or-later */

#include "sd-path.h"

#include "alloc-util.h"
#include "string-util.h"
#include "strv.h"
#include "tests.h"

TEST(sd_path_lookup) {
        for (uint64_t i = 0; i < _SD_PATH_MAX; i++) {
                _cleanup_free_ char *t = NULL, *s = NULL;
                int r;

                r = sd_path_lookup(i, NULL, &t);
                if (i == SD_PATH_USER_RUNTIME && r == -ENXIO)
                        continue;
                assert_se(r == 0);
                assert_se(t);
                log_info("%02"PRIu64": \"%s\"", i, t);

                assert_se(sd_path_lookup(i, "suffix", &s) == 0);
                assert_se(s);
                log_info("%02"PRIu64": \"%s\"", i, s);
                assert_se(endswith(s, "/suffix"));
        }

        char *tt;
        assert_se(sd_path_lookup(_SD_PATH_MAX, NULL, &tt) == -EOPNOTSUPP);
}

TEST(sd_path_lookup_strv) {
        for (uint64_t i = 0; i < _SD_PATH_MAX; i++) {
                _cleanup_strv_free_ char **t = NULL, **s = NULL;
                int r;

                r = sd_path_lookup_strv(i, NULL, &t);
                if (i == SD_PATH_USER_RUNTIME && r == -ENXIO)
                        continue;
                assert_se(r == 0);
                assert_se(t);
                log_info("%02"PRIu64":", i);
                STRV_FOREACH(item, t)
                        log_debug("  %s", *item);

                assert_se(sd_path_lookup_strv(i, "suffix", &s) == 0);
                assert_se(s);
                log_info("%02"PRIu64":", i);
                STRV_FOREACH(item, s) {
                        assert_se(endswith(*item, "/suffix"));
                        log_debug("  %s", *item);
                }
        }

        char *tt;
        assert_se(sd_path_lookup(_SD_PATH_MAX, NULL, &tt) == -EOPNOTSUPP);
}

DEFINE_TEST_MAIN(LOG_DEBUG);