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/imhttp-post-payload-compress.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 tests/imhttp-post-payload-compress.sh (limited to 'tests/imhttp-post-payload-compress.sh') diff --git a/tests/imhttp-post-payload-compress.sh b/tests/imhttp-post-payload-compress.sh new file mode 100755 index 0000000..1278c11 --- /dev/null +++ b/tests/imhttp-post-payload-compress.sh @@ -0,0 +1,30 @@ +#!/bin/bash +# This is part of the rsyslog testbench, licensed under ASL 2.0 +#export RSYSLOG_DEBUG="debug nostdout noprintmutexaction" +#export RSYSLOG_DEBUG="debug" + +. ${srcdir:=.}/diag.sh init +generate_conf +IMHTTP_PORT="$(get_free_port)" +add_conf ' +template(name="outfmt" type="string" string="%msg%\n") +module(load="../contrib/imhttp/.libs/imhttp" + ports="'$IMHTTP_PORT'") +#input(type="imhttp" endpoint="/postrequest" ruleset="ruleset" disablelfdelimiter="on") +input(type="imhttp" endpoint="/postrequest" ruleset="ruleset") +ruleset(name="ruleset") { + action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt") +} +' +startup +NUMMESSAGES=50 + +for (( i=1; i<=NUMMESSAGES; i++ )) +do + echo '[{"foo":"bar","bar":"foo"},{"one":"two","three":"four"}]' | gzip | curl -si --data-binary @- -H "Content-Encoding: gzip" http://localhost:$IMHTTP_PORT/postrequest +done +wait_queueempty +shutdown_when_empty +echo "file name: $RSYSLOG_OUT_LOG" +content_count_check '[{"foo":"bar","bar":"foo"},{"one":"two","three":"four"}]' $NUMMESSAGES +exit_test -- cgit v1.2.3