summaryrefslogtreecommitdiffstats
path: root/tests/template-pure-json.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/template-pure-json.sh')
-rwxr-xr-xtests/template-pure-json.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/template-pure-json.sh b/tests/template-pure-json.sh
new file mode 100755
index 0000000..a756e02
--- /dev/null
+++ b/tests/template-pure-json.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+# added 2018-02-10 by Rainer Gerhards; Released under ASL 2.0
+. ${srcdir:=.}/diag.sh init
+generate_conf
+add_conf '
+template(name="outfmt" type="list" option.jsonf="on") {
+ property(outname="message" name="msg" format="jsonf")
+ constant(outname="@version" value="1" format="jsonf")
+}
+
+local4.* action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt")
+'
+startup
+injectmsg 0 1
+shutdown_when_empty
+wait_shutdown
+export EXPECTED='{"message":" msgnum:00000000:", "@version": "1"}'
+cmp_exact $RSYSLOG_OUT_LOG
+exit_test