rsyslog/tests/omhttp-batch-fail-with-400.sh
Gabriel Intrator c8171a970c omhttp: updates and improvements (#3423)
omhttp:  basically a rewrite with large feature enhancements
2019-02-14 10:51:04 +01:00

53 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
# This file is part of the rsyslog project, released under ASL 2.0
# Starting actual testbench
. ${srcdir:=.}/diag.sh init
port="$(get_free_port)"
omhttp_start_server $port --fail-with-400-after 1000
generate_conf
add_conf '
module(load="../contrib/omhttp/.libs/omhttp")
main_queue(queue.dequeueBatchSize="2048")
template(name="tpl" type="string"
string="{\"msgnum\":\"%msg:F,58:2%\"}")
# Wrap message as a single batch for retry
template(name="tpl_retry" type="string" string="[%msg%]")
ruleset(name="ruleset_omhttp") {
action(
name="action_omhttp"
type="omhttp"
errorfile="'$RSYSLOG_DYNNAME/omhttp.error.log'"
template="tpl"
server="localhost"
serverport="'$port'"
restpath="my/endpoint"
batch="off"
retry="on"
# Auth
usehttps="off"
) & stop
}
if $msg contains "msgnum:" then
call ruleset_omhttp
'
startup
injectmsg 0 10000
shutdown_when_empty
wait_shutdown
omhttp_get_data $port my/endpoint
omhttp_stop_server
seq_check 0 999
exit_test