summaryrefslogtreecommitdiffstats
path: root/tests/imptcp_framing_regex.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 16:28:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 16:28:20 +0000
commitdcc721a95bef6f0d8e6d8775b8efe33e5aecd562 (patch)
tree66a2774cd0ee294d019efd71d2544c70f42b2842 /tests/imptcp_framing_regex.sh
parentInitial commit. (diff)
downloadrsyslog-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/imptcp_framing_regex.sh')
-rwxr-xr-xtests/imptcp_framing_regex.sh39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/imptcp_framing_regex.sh b/tests/imptcp_framing_regex.sh
new file mode 100755
index 0000000..f2eacd3
--- /dev/null
+++ b/tests/imptcp_framing_regex.sh
@@ -0,0 +1,39 @@
+#!/bin/bash
+# This file is part of the rsyslog project, released under ASL 2.0
+. ${srcdir:=.}/diag.sh init
+generate_conf
+add_conf '
+$EscapeControlCharactersOnReceive off
+module(load="../plugins/imptcp/.libs/imptcp")
+input(type="imptcp" port="0" listenPortFileName="'$RSYSLOG_DYNNAME'.tcpflood_port"
+ ruleset="remote"
+ framing.delimiter.regex="^<[0-9]{2}>(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)")
+
+template(name="outfmt" type="string" string="NEWMSG: %rawmsg%\n")
+ruleset(name="remote") {
+ action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt")
+}
+'
+startup
+assign_tcpflood_port $RSYSLOG_DYNNAME.tcpflood_port
+tcpflood -B -I ${srcdir}/testsuites/imptcp_framing_regex.testdata
+shutdown_when_empty
+wait_shutdown
+export EXPECTED='NEWMSG: <33>Mar 1 01:00:00 172.20.245.8 tag test1
+NEWMSG: <33>Mar 1 01:00:00 172.20.245.8 tag test xml-ish
+<test/>
+NEWMSG: <33>Mar 1 01:00:00 172.20.245.8 tag test2
+NEWMSG: <33>Mar 1 01:00:00 172.20.245.8 tag multi
+line1
+NEWMSG: <33>Mar 1 01:00:00 172.20.245.8 tag multi
+ l
+ i
+ n
+
+e2
+NEWMSG: <33>Mar 1 01:00:00 172.20.245.8 tag test3
+NEWMSG: <33>Mar 1 01:00:00 172.20.245.8 tag multi
+line3
+NEWMSG: <33>Mar 1 01:00:00 172.20.245.8 tag test4'
+cmp_exact
+exit_test