summaryrefslogtreecommitdiffstats
path: root/tests/imhttp-post-payload-multi-lf.sh
blob: fb367b5cbb9de9e610d3e6f82805dedfbf702ad7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
# This is part of the rsyslog testbench, licensed under ASL 2.0

#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" disableLFdelimiter="on" 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
  curl -si -H Content-Type:application/json http://localhost:$IMHTTP_PORT/postrequest -d $'{"foo":"bar","bar":"foo"}\n{"one":"two","three":"four"}'
done
shutdown_when_empty
echo "file name: $RSYSLOG_OUT_LOG"
content_count_check '{"foo":"bar","bar":"foo"}' $NUMMESSAGES
content_count_check '{"one":"two","three":"four"}' $NUMMESSAGES
exit_test