summaryrefslogtreecommitdiff
path: root/tests/queue-persist-drvr.sh
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2009-08-21 22:28:21 +0200
committerMichael Biebl <biebl@debian.org>2009-08-21 22:28:21 +0200
commit2299dddfa134ce3e55ee3a7fd2181f0e4ddff0bd (patch)
tree95aebee3d2f92366e9086e0f0dec069d9cbb71a0 /tests/queue-persist-drvr.sh
parent62b1f9d1c05362d94d91048f2332339c5767381b (diff)
downloadrsyslog-2299dddfa134ce3e55ee3a7fd2181f0e4ddff0bd.tar.gz
Imported Upstream version 4.4.0upstream/4.4.0
Diffstat (limited to 'tests/queue-persist-drvr.sh')
-rwxr-xr-xtests/queue-persist-drvr.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/queue-persist-drvr.sh b/tests/queue-persist-drvr.sh
new file mode 100755
index 0000000..ea5386a
--- /dev/null
+++ b/tests/queue-persist-drvr.sh
@@ -0,0 +1,28 @@
+# Test for queue data persisting at shutdown. The
+# plan is to start an instance, emit some data, do a relatively
+# fast shutdown and then re-start the engine to process the
+# remaining data.
+# added 2009-05-27 by Rgerhards
+# This file is part of the rsyslog project, released under GPLv3
+# uncomment for debugging support:
+echo testing memory queue persisting to disk, mode $1
+source $srcdir/diag.sh init
+
+# prepare config
+echo \$MainMsgQueueType $1 > work-queuemode.conf
+echo "*.* :omtesting:sleep 0 1000" > work-delay.conf
+
+# inject 5000 msgs, so that we do not hit the high watermark
+source $srcdir/diag.sh startup queue-persist.conf
+source $srcdir/diag.sh injectmsg 0 5000
+$srcdir/diag.sh shutdown-immediate
+$srcdir/diag.sh wait-shutdown
+source $srcdir/diag.sh check-mainq-spool
+
+# restart engine and have rest processed
+#remove delay
+echo "#" > work-delay.conf
+source $srcdir/diag.sh startup queue-persist.conf
+source $srcdir/diag.sh shutdown-when-empty # shut down rsyslogd when done processing messages
+source $srcdir/diag.sh seq-check 0 4999
+source $srcdir/diag.sh exit