rsyslog/tests/action-tx-single-processing.sh
Rainer Gerhards 8be4e37df6
testbench: modernize some tests and make more robust
slow test machines are now better handled
2020-01-03 11:45:55 +01:00

39 lines
1.1 KiB
Bash
Executable File

#!/bin/bash
# part of the rsyslog project, released under ASL 2.0
. ${srcdir:=.}/diag.sh init
export NUMMESSAGES=5000
export SEQ_CHECK_OPTIONS=-i2
check_sql_data_ready() {
mysql_get_data
seq_check --check-only
}
export QUEUE_EMPTY_CHECK_FUNC=check_sql_data_ready
generate_conf
add_conf '
module(load="../plugins/ommysql/.libs/ommysql")
global(errormessagestostderr.maxnumber="50")
template(type="string" name="tpl" string="insert into SystemEvents (Message, Facility) values (\"%msg%\", %$!facility%)" option.sql="on")
template(type="string" name="tpl2" string="%$.num%|%$!facility%|insert into SystemEvents (Message, Facility) values (\"%msg%\", %$!facility%)\n" option.sql="on")
if($msg contains "msgnum:") then {
set $.num = field($msg, 58, 2);
if $.num % 2 == 0 then {
set $!facility = $syslogfacility;
} else {
set $/cntr = 0;
}
action(type="ommysql" name="mysql_action" server="127.0.0.1" template="tpl"
db="'$RSYSLOG_DYNNAME'" uid="rsyslog" pwd="testbench")
}
action(type="omfile" file="'$RSYSLOG2_OUT_LOG'")
'
mysql_prep_for_test
startup
injectmsg
shutdown_when_empty
wait_shutdown
mysql_get_data
seq_check
exit_test