aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAndrew Lewis <nerf@judo.za.org>2023-12-06 14:30:14 +0200
committerAndrew Lewis <nerf@judo.za.org>2023-12-06 14:30:14 +0200
commit356574a219e1b5ac22017d9d152e9b48fde6fe25 (patch)
treebbc9794eb90a73fdbd3b00815c2a21c9d5865d7c /test
parenta301805803dff09f2819cabb3f7e5c7e9f64d14f (diff)
downloadrspamd-356574a219e1b5ac22017d9d152e9b48fde6fe25.tar.gz
rspamd-356574a219e1b5ac22017d9d152e9b48fde6fe25.zip
[Test] Exercise rspamadm lua logger in functional tests
Diffstat (limited to 'test')
-rw-r--r--test/functional/cases/150_rspamadm.robot9
-rw-r--r--test/functional/lua/rspamadm/test_batch.lua5
-rw-r--r--test/functional/lua/rspamadm/test_verbose.lua3
3 files changed, 14 insertions, 3 deletions
diff --git a/test/functional/cases/150_rspamadm.robot b/test/functional/cases/150_rspamadm.robot
index 879d4d7e8..83229dd11 100644
--- a/test/functional/cases/150_rspamadm.robot
+++ b/test/functional/cases/150_rspamadm.robot
@@ -34,7 +34,12 @@ Process message callback
Lua batch mode
${result} = Run Process ${RSPAMADM} lua -b ${RSPAMD_TESTDIR}/lua/rspamadm/test_batch.lua
- Should Match Regexp ${result.stderr} ^$
+ Should Be Equal ${result.stderr} hello world
+ Should Match Regexp ${result.stdout} ^$
Should Be Equal As Integers ${result.rc} 0
- Should Be Equal ${result.stdout} hello world
+Verbose mode
+ ${result} = Run Process ${RSPAMADM} -v lua ${RSPAMD_TESTDIR}/lua/rspamadm/test_verbose.lua
+ Should Match Regexp ${result.stderr} ^$
+ Should Match Regexp ${result.stdout} hello world\n
+ Should Be Equal As Integers ${result.rc} 0
diff --git a/test/functional/lua/rspamadm/test_batch.lua b/test/functional/lua/rspamadm/test_batch.lua
index e75154b7c..dd50c9db5 100644
--- a/test/functional/lua/rspamadm/test_batch.lua
+++ b/test/functional/lua/rspamadm/test_batch.lua
@@ -1 +1,4 @@
-print("hello world") \ No newline at end of file
+local rspamd_logger = require "rspamd_logger"
+
+rspamd_logger.info(rspamd_config, "nope")
+rspamd_logger.err(rspamd_config, "hello world")
diff --git a/test/functional/lua/rspamadm/test_verbose.lua b/test/functional/lua/rspamadm/test_verbose.lua
new file mode 100644
index 000000000..4470c63e2
--- /dev/null
+++ b/test/functional/lua/rspamadm/test_verbose.lua
@@ -0,0 +1,3 @@
+local rspamd_logger = require "rspamd_logger"
+
+rspamd_logger.info(rspamd_config, "hello world")