From d61879f0eaf7df8520beaa884203f69a07ef147b Mon Sep 17 00:00:00 2001 From: Andrew Lewis Date: Fri, 8 Dec 2023 12:51:08 +0200 Subject: [PATCH] [Test] Test systemd logging --- .../functional/cases/410_systemd_logger.robot | 21 +++++++++++++++++++ test/functional/configs/systemd-local.conf | 4 ++++ test/functional/configs/systemd.conf | 3 +++ 3 files changed, 28 insertions(+) create mode 100644 test/functional/cases/410_systemd_logger.robot create mode 100644 test/functional/configs/systemd-local.conf create mode 100644 test/functional/configs/systemd.conf diff --git a/test/functional/cases/410_systemd_logger.robot b/test/functional/cases/410_systemd_logger.robot new file mode 100644 index 000000000..f90d16065 --- /dev/null +++ b/test/functional/cases/410_systemd_logger.robot @@ -0,0 +1,21 @@ +*** Settings *** +Suite Setup Rspamd Setup +Suite Teardown Systemd Teardown +Library ${RSPAMD_TESTDIR}/lib/rspamd.py +Resource ${RSPAMD_TESTDIR}/lib/rspamd.robot +Variables ${RSPAMD_TESTDIR}/lib/vars.py + +*** Variables *** +${CONFIG} ${RSPAMD_TESTDIR}/configs/systemd.conf +${RSPAMD_SCOPE} Suite + +*** Test Cases *** +EMPTY TEST + Pass Execution No worries + +*** Keywords *** +Systemd Teardown + Touch ${RSPAMD_TMPDIR}/rspamd.log + Rspamd Teardown + ${log} = Get File ${EXECDIR}/robot-save/rspamd.stderr.last + Should Match Regexp ${log} \\n\\(main\\) lua; lua_cfg_transform\\.lua:\\d+: overriding actions from the legacy metric settings\\n diff --git a/test/functional/configs/systemd-local.conf b/test/functional/configs/systemd-local.conf new file mode 100644 index 000000000..ed796a95e --- /dev/null +++ b/test/functional/configs/systemd-local.conf @@ -0,0 +1,4 @@ +logging { + type = "console"; + systemd = true; +} diff --git a/test/functional/configs/systemd.conf b/test/functional/configs/systemd.conf new file mode 100644 index 000000000..f57827c48 --- /dev/null +++ b/test/functional/configs/systemd.conf @@ -0,0 +1,3 @@ +.include(duplicate=append,priority=0) "{= env.TESTDIR =}/configs/trivial.conf" + +.include(priority=1,duplicate=merge) "{= env.TESTDIR =}/configs/systemd-local.conf" -- 2.39.5