]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/journal/test-journal-syslog.c
resolved: add enablers for DNS-SD
[thirdparty/systemd.git] / src / journal / test-journal-syslog.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
e88baee8
ZJS
2/***
3 This file is part of systemd.
4
5 Copyright 2011 Lennart Poettering
6
7 systemd is free software; you can redistribute it and/or modify it
8 under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation; either version 2.1 of the License, or
10 (at your option) any later version.
11
12 systemd is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public License
18 along with systemd; If not, see <http://www.gnu.org/licenses/>.
19***/
20
b5efdb8a 21#include "alloc-util.h"
e88baee8
ZJS
22#include "journald-syslog.h"
23#include "macro.h"
07630cea 24#include "string-util.h"
e88baee8
ZJS
25
26static void test_syslog_parse_identifier(const char* str,
27 const char *ident, const char*pid, int ret) {
28 const char *buf = str;
7fd1b19b 29 _cleanup_free_ char *ident2 = NULL, *pid2 = NULL;
e88baee8
ZJS
30 int ret2;
31
32 ret2 = syslog_parse_identifier(&buf, &ident2, &pid2);
33
787784c4
RC
34 assert_se(ret == ret2);
35 assert_se(ident == ident2 || streq_ptr(ident, ident2));
36 assert_se(pid == pid2 || streq_ptr(pid, pid2));
e88baee8
ZJS
37}
38
39int main(void) {
40 test_syslog_parse_identifier("pidu[111]: xxx", "pidu", "111", 11);
41 test_syslog_parse_identifier("pidu: xxx", "pidu", NULL, 6);
42 test_syslog_parse_identifier("pidu xxx", NULL, NULL, 0);
43
44 return 0;
45}