mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-15 12:50:41 +01:00
29 lines
1.1 KiB
Bash
Executable File
29 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# added 2014-11-17 by singh.janmejay
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
echo ===============================================================================
|
|
echo \[mmnormalize_regex_defaulted.sh\]: test for mmnormalize regex field_type, with allow_regex defaulted
|
|
. ${srcdir:=.}/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
template(name="hosts_and_ports" type="string" string="host and port list: %$!hps%\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="0" listenPortFileName="'$RSYSLOG_DYNNAME'.tcpflood_port")
|
|
|
|
action(type="mmnormalize" rulebase=`echo $srcdir/testsuites/mmnormalize_regex.rulebase`)
|
|
action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="hosts_and_ports")
|
|
'
|
|
startup
|
|
tcpflood -m 1 -I $srcdir/testsuites/regex_input
|
|
echo doing shutdown
|
|
shutdown_when_empty
|
|
echo wait on shutdown
|
|
wait_shutdown
|
|
assert_content_missing '192' #several ips in input are 192.168.1.0/24
|
|
exit_test
|