mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 09:50:40 +01:00
changes some of the test commands to use bash functions includes some small bug fixes to tests where bugs were previously not seen due to different plumbing.
46 lines
1.8 KiB
Bash
Executable File
46 lines
1.8 KiB
Bash
Executable File
#!/bin/bash
|
|
# added 2015-12-18 by singh.janmejay
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
|
|
uname
|
|
if [ `uname` = "FreeBSD" ] ; then
|
|
echo "This test currently does not work on FreeBSD."
|
|
exit 77
|
|
fi
|
|
|
|
echo ===============================================================================
|
|
echo \[lookup_table_rscript_reload_without_stub-vg.sh\]: test for lookup-table reload by rscript-stmt without stub-value with valgrind
|
|
. $srcdir/diag.sh init
|
|
cp -f $srcdir/testsuites/xlate.lkp_tbl xlate.lkp_tbl
|
|
startup_vg lookup_table_reload.conf
|
|
# the last message ..002 should cause successful lookup-table reload
|
|
cp -f $srcdir/testsuites/xlate_more.lkp_tbl xlate.lkp_tbl
|
|
. $srcdir/diag.sh injectmsg 0 3
|
|
. $srcdir/diag.sh await-lookup-table-reload
|
|
. $srcdir/diag.sh wait-queueempty
|
|
. $srcdir/diag.sh content-check "msgnum:00000000: foo_old"
|
|
. $srcdir/diag.sh content-check "msgnum:00000001: bar_old"
|
|
. $srcdir/diag.sh assert-content-missing "baz"
|
|
cp -f $srcdir/testsuites/xlate_more_with_duplicates_and_nomatch.lkp_tbl xlate.lkp_tbl
|
|
. $srcdir/diag.sh injectmsg 0 3
|
|
. $srcdir/diag.sh await-lookup-table-reload
|
|
. $srcdir/diag.sh wait-queueempty
|
|
. $srcdir/diag.sh content-check "msgnum:00000000: foo_new"
|
|
. $srcdir/diag.sh content-check "msgnum:00000001: bar_new"
|
|
. $srcdir/diag.sh content-check "msgnum:00000002: baz"
|
|
rm -f xlate.lkp_tbl # this should lead to unsuccessful reload
|
|
. $srcdir/diag.sh injectmsg 0 3
|
|
. $srcdir/diag.sh await-lookup-table-reload
|
|
. $srcdir/diag.sh wait-queueempty
|
|
. $srcdir/diag.sh injectmsg 0 2
|
|
echo doing shutdown
|
|
shutdown_when_empty
|
|
echo wait on shutdown
|
|
wait_shutdown_vg
|
|
. $srcdir/diag.sh check-exit-vg
|
|
. $srcdir/diag.sh content-check-with-count "msgnum:00000000: foo_latest" 2
|
|
. $srcdir/diag.sh content-check-with-count "msgnum:00000001: quux" 2
|
|
. $srcdir/diag.sh content-check-with-count "msgnum:00000002: baz_latest" 1
|
|
|
|
exit_test
|