rsyslog/tests/rawmsg-after-pri.sh
Rainer Gerhards 77349efb3d fix issue with rawmsg-after-pri property
also added a testbench test
2015-10-08 14:29:57 +02:00

24 lines
867 B
Bash
Executable File

#!/bin/bash
# This file is part of the rsyslog project, released under ASL 2.0
. $srcdir/diag.sh init
. $srcdir/diag.sh startup rawmsg-after-pri.conf
. $srcdir/diag.sh tcpflood -m1 -P 129
. $srcdir/diag.sh shutdown-when-empty # shut down rsyslogd when done processing messages
. $srcdir/diag.sh wait-shutdown # and wait for it to terminate
echo "Mar 1 01:00:00 172.20.245.8 tag msgnum:00000000:" > rsyslog.out.compare
NUMLINES=$(grep -c "^Mar 1 01:00:00 172.20.245.8 tag msgnum:00000000:$" rsyslog.out.log 2>/dev/null)
if [ -z $NUMLINES ]; then
echo "ERROR: output file seems not to exist"
ls -l rsyslog.out.log
cat rsyslog.out.log
. $srcdir/diag.sh error-exit 1
else
if [ ! $NUMLINES -eq 1 ]; then
echo "ERROR: output format does not match expectation"
cat rsyslog.out.log
. $srcdir/diag.sh error-exit 1
fi
fi
. $srcdir/diag.sh exit