diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:28:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:28:20 +0000 |
commit | dcc721a95bef6f0d8e6d8775b8efe33e5aecd562 (patch) | |
tree | 66a2774cd0ee294d019efd71d2544c70f42b2842 /tests/action-tx-errfile.sh | |
parent | Initial commit. (diff) | |
download | rsyslog-dcc721a95bef6f0d8e6d8775b8efe33e5aecd562.tar.xz rsyslog-dcc721a95bef6f0d8e6d8775b8efe33e5aecd562.zip |
Adding upstream version 8.2402.0.upstream/8.2402.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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 |