rsyslog/tests/mmexternal-SegFault-empty-jroot-vg.sh
Rainer Gerhards 618f743299
testbench: fix final issues for python 3 transition
Thanks to Michael Biebl for his help on this issue.

This patch also contains some slight test modernization and
a "name fix" for a non-valgrind test.

closes https://github.com/rsyslog/rsyslog/issues/3853
2020-01-23 12:38:03 +01:00

24 lines
671 B
Bash
Executable File

#!/bin/bash
# add 2017-11-06 by PascalWithopf, released under ASL 2.0
. ${srcdir:=.}/diag.sh init
generate_conf
add_conf '
module(load="../plugins/mmexternal/.libs/mmexternal")
template(name="outfmt" type="string" string="-%$!%-\n")
if $msg contains "msgnum:" then {
action(type="mmexternal" interface.input="fulljson"
binary="'$PYTHON' '${srcdir}'/testsuites/mmexternal-SegFault-mm-python.py")
action(type="omfile" template="outfmt" file=`echo $RSYSLOG_OUT_LOG`)
}
'
startup_vg
injectmsg litteral "<129>Mar 10 01:00:00 172.20.245.8 tag:msgnum:1"
shutdown_when_empty
wait_shutdown_vg
check_exit_vg
export EXPECTED='-{ "sometag": "somevalue" }-'
cmp_exact
exit_test