mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-19 22:00:42 +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.
47 lines
2.0 KiB
Bash
Executable File
47 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
# added 2014-11-03 by singh.janmejay
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
echo ===============================================================================
|
|
echo \[mmnormalize_tokenized.sh\]: test for mmnormalize tokenized field_type
|
|
. $srcdir/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
template(name="ips" type="string" string="%$.ips%\n")
|
|
|
|
template(name="paths" type="string" string="%$!fragments% %$!user%\n")
|
|
template(name="numbers" type="string" string="nos: %$!some_nos%\n")
|
|
|
|
module(load="../plugins/mmnormalize/.libs/mmnormalize")
|
|
module(load="../plugins/imptcp/.libs/imptcp")
|
|
input(type="imptcp" port="'$TCPFLOOD_PORT'")
|
|
|
|
action(type="mmnormalize" rulebase=`echo $srcdir/testsuites/mmnormalize_tokenized.rulebase`)
|
|
if ( $!only_ips != "" ) then {
|
|
set $.ips = $!only_ips;
|
|
action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="ips")
|
|
} else if ( $!local_ips != "" ) then {
|
|
set $.ips = $!local_ips;
|
|
action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="ips")
|
|
} else if ( $!external_ips != "" ) then {
|
|
set $.ips = $!external_ips;
|
|
action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="ips")
|
|
} else if ( $!some_nos != "" ) then {
|
|
action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="numbers")
|
|
} else {
|
|
action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="paths")
|
|
}
|
|
'
|
|
startup
|
|
tcpflood -m 1 -I $srcdir/testsuites/tokenized_input
|
|
echo doing shutdown
|
|
shutdown_when_empty
|
|
echo wait on shutdown
|
|
wait_shutdown
|
|
cp $RSYSLOG_OUT_LOG /tmp/
|
|
. $srcdir/diag.sh content-check '[ "10.20.30.40", "50.60.70.80", "90.100.110.120", "130.140.150.160" ]'
|
|
. $srcdir/diag.sh content-check '[ "192.168.1.2", "192.168.1.3", "192.168.1.4" ]'
|
|
. $srcdir/diag.sh content-check '[ "10.20.30.40", "50.60.70.80", "190.200.210.220" ]'
|
|
. $srcdir/diag.sh content-check '[ "\/bin", "\/usr\/local\/bin", "\/usr\/bin" ] foo'
|
|
. $srcdir/diag.sh content-check '[ [ [ "10" ] ], [ [ "20" ], [ "30", "40", "50" ], [ "60", "70", "80" ] ], [ [ "90" ], [ "100" ] ] ]'
|
|
exit_test
|