summaryrefslogtreecommitdiff
path: root/src/journal/test-journal-syslog.c
blob: 84cfcefc3a2a0b37603f7f3bff322b07a16f2efe (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
60
61
62
63
64
65
66
67
68
69
70
/* SPDX-License-Identifier: LGPL-2.1-or-later */

#include "alloc-util.h"
#include "journald-syslog.h"
#include "macro.h"
#include "string-util.h"
#include "syslog-util.h"
#include "tests.h"

static void test_syslog_parse_identifier_one(const char *str,
                                         const char *ident, const char *pid, const char *rest, int ret) {
        const char *buf = str;
        _cleanup_free_ char *ident2 = NULL, *pid2 = NULL;
        int ret2;

        ret2 = syslog_parse_identifier(&buf, &ident2, &pid2);

        assert_se(ret == ret2);
        assert_se(ident == ident2 || streq_ptr(ident, ident2));
        assert_se(pid == pid2 || streq_ptr(pid, pid2));
        assert_se(streq(buf, rest));
}

static void test_syslog_parse_priority_one(const char *str, bool with_facility, int priority, int ret) {
        int priority2 = 0, ret2;

        ret2 = syslog_parse_priority(&str, &priority2, with_facility);

        assert_se(ret == ret2);
        if (ret2 == 1)
                assert_se(priority == priority2);
}

TEST(syslog_parse_identifier) {
        test_syslog_parse_identifier_one("pidu[111]: xxx", "pidu", "111", "xxx", 11);
        test_syslog_parse_identifier_one("pidu: xxx", "pidu", NULL, "xxx", 6);
        test_syslog_parse_identifier_one("pidu:  xxx", "pidu", NULL, " xxx", 6);
        test_syslog_parse_identifier_one("pidu xxx", NULL, NULL, "pidu xxx", 0);
        test_syslog_parse_identifier_one("   pidu xxx", NULL, NULL, "   pidu xxx", 0);
        test_syslog_parse_identifier_one("", NULL, NULL, "", 0);
        test_syslog_parse_identifier_one("  ", NULL, NULL, "  ", 0);
        test_syslog_parse_identifier_one(":", "", NULL, "", 1);
        test_syslog_parse_identifier_one(":  ", "", NULL, " ", 2);
        test_syslog_parse_identifier_one(" :", "", NULL, "", 2);
        test_syslog_parse_identifier_one("   pidu:", "pidu", NULL, "", 8);
        test_syslog_parse_identifier_one("pidu:", "pidu", NULL, "", 5);
        test_syslog_parse_identifier_one("pidu: ", "pidu", NULL, "", 6);
        test_syslog_parse_identifier_one("pidu : ", NULL, NULL, "pidu : ", 0);
}

TEST(syslog_parse_priority) {
        test_syslog_parse_priority_one("", false, 0, 0);
        test_syslog_parse_priority_one("<>", false, 0, 0);
        test_syslog_parse_priority_one("<>aaa", false, 0, 0);
        test_syslog_parse_priority_one("<aaaa>", false, 0, 0);
        test_syslog_parse_priority_one("<aaaa>aaa", false, 0, 0);
        test_syslog_parse_priority_one(" <aaaa>", false, 0, 0);
        test_syslog_parse_priority_one(" <aaaa>aaa", false, 0, 0);
        test_syslog_parse_priority_one(" <aaaa>aaa", false, 0, 0);
        test_syslog_parse_priority_one(" <1>", false, 0, 0);
        test_syslog_parse_priority_one("<1>", false, 1, 1);
        test_syslog_parse_priority_one("<7>", false, 7, 1);
        test_syslog_parse_priority_one("<8>", false, 0, 0);
        test_syslog_parse_priority_one("<9>", true, 9, 1);
        test_syslog_parse_priority_one("<22>", true, 22, 1);
        test_syslog_parse_priority_one("<111>", false, 0, 0);
        test_syslog_parse_priority_one("<111>", true, 111, 1);
}

DEFINE_TEST_MAIN(LOG_INFO);