summaryrefslogtreecommitdiffstats
path: root/tests/improg_simple_multi.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 16:28:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 16:28:20 +0000
commitdcc721a95bef6f0d8e6d8775b8efe33e5aecd562 (patch)
tree66a2774cd0ee294d019efd71d2544c70f42b2842 /tests/improg_simple_multi.sh
parentInitial commit. (diff)
downloadrsyslog-dcc721a95bef6f0d8e6d8775b8efe33e5aecd562.tar.xz
rsyslog-dcc721a95bef6f0d8e6d8775b8efe33e5aecd562.zip
Adding upstream version 8.2402.0.upstream/8.2402.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/improg_simple_multi.sh')
-rwxr-xr-xtests/improg_simple_multi.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/improg_simple_multi.sh b/tests/improg_simple_multi.sh
new file mode 100755
index 0000000..babcb9b
--- /dev/null
+++ b/tests/improg_simple_multi.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+#
+. ${srcdir:=.}/diag.sh init
+generate_conf
+add_conf '
+module(load="../contrib/improg/.libs/improg")
+template(name="outfmt" type="string" string="#%msg%#\n")
+input(type="improg" tag="tag" ruleset="ruleset"
+ binary="'$PYTHON' '$srcdir'/improg-multiline-test.py"
+ confirmmessages="off" closetimeout="2000"
+ )
+ruleset(name="ruleset") {
+ action(type="omfile" template="outfmt" file="'$RSYSLOG_OUT_LOG'")
+}
+'
+startup
+shutdown_when_empty
+wait_shutdown
+NUM_ITEMS=10
+echo "expected: $NUM_EXPECTED"
+echo "file: $RSYSLOG_OUT_LOG"
+content_check_with_count "#multi-line-string#" $NUM_EXPECTED $NUM_ITEMS
+exit_test