mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-18 09:50:43 +01:00
Support tools (like tcpflood) are also upgraded to support the necessary dynamic port.s This is part of the effort to make parallel testing possible. We move parts of the cleanup to the buildbot cleanup, as we cannot clean out instances on each test when we run parallel tests.
57 lines
1.9 KiB
Bash
Executable File
57 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
# add 2018-05-03 by PascalWithopf, released under ASL 2.0
|
|
. $srcdir/diag.sh init
|
|
./have_relpSrvSetOversizeMode
|
|
if [ $? -eq 1 ]; then
|
|
echo "imrelp parameter oversizeMode not available. Test stopped"
|
|
exit 77
|
|
fi;
|
|
generate_conf
|
|
add_conf '
|
|
module(load="../plugins/imrelp/.libs/imrelp")
|
|
global(maxMessageSize="230"
|
|
oversizemsg.input.mode="split")
|
|
|
|
|
|
input(type="imrelp" port="'$TCPFLOOD_PORT'" maxdatasize="300")
|
|
|
|
template(name="outfmt" type="string" string="%rawmsg%\n")
|
|
action(type="omfile" template="outfmt"
|
|
file=`echo $RSYSLOG_OUT_LOG`)
|
|
'
|
|
# TODO: add tcpflood option to specific EXACT test message size!
|
|
startup
|
|
tcpflood -Trelp-plain -p'$TCPFLOOD_PORT' -m1 -d 240
|
|
shutdown_when_empty # shut down rsyslogd when done processing messages
|
|
wait_shutdown
|
|
|
|
# We need the ^-sign to symbolize the beginning and the $-sign to symbolize the end
|
|
# because otherwise we won't know if it was truncated at the right length.
|
|
#First part of message is checked
|
|
grep "^<167>Mar 1 01:00:00 172.20.245.8 tag msgnum:00000000:240:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX$" $RSYSLOG_OUT_LOG > /dev/null
|
|
if [ $? -ne 0 ]; then
|
|
echo
|
|
echo "FAIL: expected message not found. $RSYSLOG_OUT_LOG is:"
|
|
cat $RSYSLOG_OUT_LOG
|
|
error_exit 1
|
|
fi
|
|
#Split part of message is checked
|
|
grep "^XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX$" $RSYSLOG_OUT_LOG > /dev/null
|
|
if [ $? -ne 0 ]; then
|
|
echo
|
|
echo "FAIL: expected message not found. $RSYSLOG_OUT_LOG is:"
|
|
cat $RSYSLOG_OUT_LOG
|
|
error_exit 1
|
|
fi
|
|
#Error message is checked
|
|
grep "message too long.*begin of message is:" $RSYSLOG_OUT_LOG > /dev/null
|
|
if [ $? -ne 0 ]; then
|
|
echo
|
|
echo "FAIL: expected message not found. $RSYSLOG_OUT_LOG is:"
|
|
cat $RSYSLOG_OUT_LOG
|
|
error_exit 1
|
|
fi
|
|
|
|
|
|
exit_test
|