rsyslog/tests/imptcp_multi_line.sh
Rainer Gerhards 69ef6e329b fix bad bash coding style and disable shellcheck false positives
Also now permit interactivly running tests without explicitly setting
$srcdir. This now works if we are inside ./tests and fails, as before,
when we are in a different directory.

Detected by shellcheck via CodeFactor.io
2018-10-23 13:27:37 +02:00

32 lines
1.2 KiB
Bash
Executable File

#!/bin/bash
# This file is part of the rsyslog project, released under ASL 2.0
. ${srcdir:=.}/diag.sh init
generate_conf
add_conf '
module(load="../plugins/imptcp/.libs/imptcp")
input(type="imptcp" port="'$TCPFLOOD_PORT'" ruleset="remote" multiline="on")
template(name="outfmt" type="string" string="NEWMSG: %rawmsg%\n")
ruleset(name="remote") {
action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt")
}
'
startup
tcpflood -B -I ${srcdir}/testsuites/imptcp_multi_line.testdata
shutdown_when_empty # shut down rsyslogd when done processing messages
wait_shutdown # and wait for it to terminate
echo 'NEWMSG: <133>Mar 1 01:00:00 172.20.245.8 tag test1
NEWMSG: <133>Mar 1 01:00:00 172.20.245.8 tag test2
NEWMSG: <133>Mar 1 01:00:00 172.20.245.8 tag multi#012line1
NEWMSG: <133>Mar 1 01:00:00 172.20.245.8 tag multi#012l#012i#012n#012#012e2
NEWMSG: <133>Mar 1 01:00:00 172.20.245.8 tag test3
NEWMSG: <133>Mar 1 01:00:00 172.20.245.8 tag multi#012line3
NEWMSG: <133>Mar 1 01:00:00 172.20.245.8 tag test4
NEWMSG: <133>Mar 1 01:00:00 172.20.245.8 tag test end' | cmp - $RSYSLOG_OUT_LOG
if [ ! $? -eq 0 ]; then
echo "invalid response generated, $RSYSLOG_OUT_LOG is:"
cat $RSYSLOG_OUT_LOG
error_exit 1
fi;
exit_test