summaryrefslogtreecommitdiffstats
path: root/tests/json_var_case.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/json_var_case.sh')
-rwxr-xr-xtests/json_var_case.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/json_var_case.sh b/tests/json_var_case.sh
new file mode 100755
index 0000000..3cc7e1f
--- /dev/null
+++ b/tests/json_var_case.sh
@@ -0,0 +1,32 @@
+#!/bin/bash
+# added 2015-11-24 by portant
+# This file is part of the rsyslog project, released under ASL 2.0
+echo ===========================================================================================
+echo \[json_var_case.sh\]: test for JSON upper and lower case variables, and leading underscores
+. ${srcdir:=.}/diag.sh init
+generate_conf
+add_conf '
+global(variables.casesensitive="on")
+module(load="../plugins/mmjsonparse/.libs/mmjsonparse")
+module(load="../plugins/imtcp/.libs/imtcp")
+input(type="imtcp" port="0" listenPortFileName="'$RSYSLOG_DYNNAME'.tcpflood_port")
+
+# we must make sure the template contains references to the variables
+template(name="outfmt" type="string" string="abc:%$!abc% ABC:%$!ABC% aBc:%$!aBc% _abc:%$!_abc% _ABC:%$!_ABC% _aBc:%$!_aBc%\n" option.casesensitive="on")
+template(name="outfmt-all-json" type="string" string="%$!all-json%\n")
+
+action(type="mmjsonparse")
+set $!_aBc = "7";
+action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt")
+if $!_aBc != "7" then
+ action(type="omfile" file="./'"${RSYSLOG2_OUT_LOG}"'" template="outfmt-all-json")
+'
+startup
+tcpflood -m 1 -M "\"<167>Nov 6 12:34:56 172.0.0.1 test: @cee: { \\\"abc\\\": \\\"1\\\", \\\"ABC\\\": \\\"2\\\", \\\"aBc\\\": \\\"3\\\", \\\"_abc\\\": \\\"4\\\", \\\"_ABC\\\": \\\"5\\\", \\\"_aBc\\\": \\\"6\\\" }\""
+echo doing shutdown
+shutdown_when_empty
+echo wait on shutdown
+wait_shutdown
+# NOTE: conf file updates _aBc to "7"
+content_check "abc:1 ABC:2 aBc:3 _abc:4 _ABC:5 _aBc:7"
+exit_test