commit d61879f: [Test] Test systemd logging
Andrew Lewis
nerf at judo.za.org
Mon Jul 29 17:50:06 UTC 2024
Author: Andrew Lewis
Date: 2023-12-08 12:51:08 +0200
URL: https://github.com/rspamd/rspamd/commit/d61879f0eaf7df8520beaa884203f69a07ef147b (refs/pull/4733/head)
[Test] Test systemd logging
---
test/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(+)
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"
More information about the Commits
mailing list