]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/journal/test-journal-syslog.c
Merge pull request #7388 from keszybz/doc-tweak
[thirdparty/systemd.git] / src / journal / test-journal-syslog.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2011 Lennart Poettering
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 "alloc-util.h"
21 #include "journald-syslog.h"
22 #include "macro.h"
23 #include "string-util.h"
24
25 static void test_syslog_parse_identifier(const char* str,
26 const char *ident, const char*pid, int ret) {
27 const char *buf = str;
28 _cleanup_free_ char *ident2 = NULL, *pid2 = NULL;
29 int ret2;
30
31 ret2 = syslog_parse_identifier(&buf, &ident2, &pid2);
32
33 assert_se(ret == ret2);
34 assert_se(ident == ident2 || streq_ptr(ident, ident2));
35 assert_se(pid == pid2 || streq_ptr(pid, pid2));
36 }
37
38 int main(void) {
39 test_syslog_parse_identifier("pidu[111]: xxx", "pidu", "111", 11);
40 test_syslog_parse_identifier("pidu: xxx", "pidu", NULL, 6);
41 test_syslog_parse_identifier("pidu xxx", NULL, NULL, 0);
42
43 return 0;
44 }