diff options
Diffstat (limited to '')
-rwxr-xr-x | tests/action-tx-errfile.sh | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/action-tx-errfile.sh b/tests/action-tx-errfile.sh new file mode 100755 index 0000000..fd492d3 --- /dev/null +++ b/tests/action-tx-errfile.sh @@ -0,0 +1,40 @@ +#!/bin/bash +# added by Rainer Gerhards 2018-01-05 +# part of the rsyslog project, released under ASL 2.0 +. ${srcdir:=.}/diag.sh init +export NUMMESSAGES=50 # sufficient for our needs! +export SEQ_CHECK_OPTIONS=-i2 +check_sql_data_ready() { + mysql_get_data + seq_check --check-only 0 $((NUMMESSAGES - 2)) +} +export QUEUE_EMPTY_CHECK_FUNC=check_sql_data_ready + +generate_conf +add_conf ' +$ModLoad ../plugins/ommysql/.libs/ommysql +global(errormessagestostderr.maxnumber="5") + +template(type="string" name="tpl" string="insert into SystemEvents (Message, Facility) values (\"%msg%\", %$!facility%)" option.sql="on") + +if((not($msg contains "error")) and ($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.errorfile="'$RSYSLOG2_OUT_LOG'") +} +' +mysql_prep_for_test +startup +injectmsg +shutdown_when_empty +wait_shutdown +export EXPECTED="$(cat ${srcdir}/testsuites/action-tx-errfile.result)" +cmp_exact ${RSYSLOG2_OUT_LOG} +mysql_get_data +seq_check 0 $((NUMMESSAGES - 2)) -i2 +exit_test |