summaryrefslogtreecommitdiffstats
path: root/tests/omfile-read-only.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/omfile-read-only.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 '')
-rwxr-xr-xtests/omfile-read-only.sh35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/omfile-read-only.sh b/tests/omfile-read-only.sh
new file mode 100755
index 0000000..7cc25d1
--- /dev/null
+++ b/tests/omfile-read-only.sh
@@ -0,0 +1,35 @@
+#!/bin/bash
+# addd 2016-06-16 by RGerhards, released under ASL 2.0
+. ${srcdir:=.}/diag.sh init
+messages=20000 # how many messages to inject?
+# Note: we need to inject a somewhat larger number of messages in order
+# to ensure that we receive some messages in the actual output file,
+# as batching can (validly) cause a larger loss in the non-writable
+# file
+
+generate_conf
+add_conf '
+template(name="outfmt" type="string" string="%msg:F,58:2%\n")
+:msg, contains, "msgnum:" {
+ action(type="omfile" template="outfmt" file="'$RSYSLOG2_OUT_LOG'")
+ action(type="omfile" template="outfmt" file="'$RSYSLOG_OUT_LOG'"
+ action.execOnlyWhenPreviousIsSuspended="on"
+ )
+}
+'
+touch ${RSYSLOG2_OUT_LOG}
+chmod 0400 ${RSYSLOG2_OUT_LOG}
+ls -l rsyslog.ou*
+startup
+injectmsg 0 $messages
+shutdown_when_empty
+wait_shutdown
+# we know that the output file is missing some messages, but it
+# MUST have some more, and these be in sequence. So we now read
+# the first message number and calculate based on it what must be
+# present in the output file.
+presort
+let firstnum=$((10#$($RS_HEADCMD -n1 $RSYSLOG_DYNNAME.presort)))
+echo "info: first message expected to be number $firstnum, using that value."
+seq_check $firstnum $((messages-1))
+exit_test