mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-13 04:50:41 +01:00
You may want to review some of these tests. The "conflict" and "key truncated" test cases are checking for a debug message (rsyslog debug), this may be overkill. Also some tests require jq in $PATH, to get deterministic JSON output (sorted keys). If jq is not found, the tests are skipped.
38 lines
959 B
Bash
Executable File
38 lines
959 B
Bash
Executable File
#!/bin/bash
|
|
# added 2021-03-09 by Julien Thomas, released under ASL 2.0
|
|
|
|
source "${srcdir:=.}/diag.sh" init
|
|
#export RSYSLOG_DEBUG="debug nostdout"
|
|
#export RSYSLOG_DEBUGLOG="$RSYSLOG_DYNNAME.debug"
|
|
|
|
generate_conf
|
|
add_conf '
|
|
module(load="../plugins/imtcp/.libs/imtcp")
|
|
module(load="../contrib/fmunflatten/.libs/fmunflatten")
|
|
input(type="imtcp" port="0" listenPortFileName="'"$RSYSLOG_DYNNAME"'.tcpflood_port")
|
|
template(name="outfmt" type="string" string="%msg% %$.ret% %$.unflatten%\n")
|
|
|
|
if (not($msg contains "msgnum:")) then
|
|
stop
|
|
|
|
set $/cpt = $/cpt + 1;
|
|
if ($/cpt == 1) then
|
|
set $! = "string";
|
|
else
|
|
set $! = 42;
|
|
|
|
set $.unflatten = unflatten($!, ".");
|
|
set $.ret = script_error();
|
|
action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt")
|
|
'
|
|
startup
|
|
tcpflood -m 2
|
|
wait_file_lines "$RSYSLOG_OUT_LOG" 2 60
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
|
|
EXPECTED=' msgnum:00000000: 0 string
|
|
msgnum:00000001: 0 42'
|
|
cmp_exact "$RSYSLOG_OUT_LOG"
|
|
exit_test
|