mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 12:10:46 +01:00
changes some of the test commands to use bash functions includes some small bug fixes to tests where bugs were previously not seen due to different plumbing.
29 lines
710 B
Bash
Executable File
29 lines
710 B
Bash
Executable File
#!/bin/bash
|
|
# add 2018-06-27 by Pascal Withopf, released under ASL 2.0
|
|
. $srcdir/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
module(load="../plugins/imtcp/.libs/imtcp")
|
|
input(type="imtcp" port="13514")
|
|
|
|
template(name="outfmt" type="string" string="%timestamp:::date-pgsql%\n")
|
|
|
|
:syslogtag, contains, "su" action(type="omfile" file="rsyslog.out.log"
|
|
template="outfmt")
|
|
|
|
|
|
'
|
|
startup
|
|
. $srcdir/diag.sh tcpflood -m1 -M "\"<34>1 2003-01-23T12:34:56.003Z mymachine.example.com su - ID47 - MSG\""
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
|
|
echo '2003-01-23 12:34:56' | 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
|