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/imhttp-post-payload-query-params.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 'tests/imhttp-post-payload-query-params.sh')
-rwxr-xr-x | tests/imhttp-post-payload-query-params.sh | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/tests/imhttp-post-payload-query-params.sh b/tests/imhttp-post-payload-query-params.sh new file mode 100755 index 0000000..ae6d61d --- /dev/null +++ b/tests/imhttp-post-payload-query-params.sh @@ -0,0 +1,48 @@ +#!/bin/bash +# This is part of the rsyslog testbench, licensed under ASL 2.0 + +. ${srcdir:=.}/diag.sh init +generate_conf +IMHTTP_PORT="$(get_free_port)" +add_conf ' +template(name="all" type="string" string="%msg% headers: %$!metadata%\n") +template(name="outfmt" type="list") { + property(name="msg") + constant(value=" - ") + constant(value="{ baz: ") + property(name="$!metadata!httpheaders!baz") + constant(value=", daddle: ") + property(name="$!metadata!httpheaders!daddle") + constant(value=", fiddle: ") + property(name="$!metadata!httpheaders!fiddle") + constant(value=" }") + constant(value=" - ") + constant(value=" !metadata: ") + property(name="$!metadata") + constant(value="\n") +} + +module(load="../contrib/imhttp/.libs/imhttp" + ports="'$IMHTTP_PORT'") +input(type="imhttp" endpoint="/postrequest" ruleset="ruleset" addmetadata="on") +ruleset(name="ruleset") { + #action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt") + action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="all") +} +' +startup +NUMMESSAGES=100 +for (( i=1; i<=NUMMESSAGES; i++ )) +do + curl -si -H Content-Type:application/json -H "BAZ: skat" -H "daddle: doodle" -H "fiddle: faddle" \ + "http://localhost:$IMHTTP_PORT/postrequest?foo=bar;bar=foo&one=3" --data '[{"foo":"bar","bar":"foo"},{"one":"two","three":"four"}]' & +done +sleep 2 +wait_queueempty +echo "doing shutdown" +shutdown_when_empty +wait_shutdown +echo "file name: $RSYSLOG_OUT_LOG" +#content_count_check '[{"foo":"bar","bar":"foo"},{"one":"two","three":"four"}] - { baz: skat, daddle: doodle, fiddle: faddle }' $NUMMESSAGES +content_count_check '"queryparams": { "foo": "bar", "bar": "foo", "one": "3" }' $NUMMESSAGES +exit_test |