From dcc721a95bef6f0d8e6d8775b8efe33e5aecd562 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 18:28:20 +0200 Subject: Adding upstream version 8.2402.0. Signed-off-by: Daniel Baumann --- tests/action-tx-single-processing.sh | 38 ++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 tests/action-tx-single-processing.sh (limited to 'tests/action-tx-single-processing.sh') diff --git a/tests/action-tx-single-processing.sh b/tests/action-tx-single-processing.sh new file mode 100755 index 0000000..43c9f2e --- /dev/null +++ b/tests/action-tx-single-processing.sh @@ -0,0 +1,38 @@ +#!/bin/bash +# part of the rsyslog project, released under ASL 2.0 +. ${srcdir:=.}/diag.sh init +export NUMMESSAGES=2000 +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 ' +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 0 $((NUMMESSAGES - 2)) +exit_test -- cgit v1.2.3