rsyslog/tests/template-topos-neg.sh
Rainer Gerhards 7245abb709
core/template: implement negative position.to
This will easily permit to drop the last n characters from a property
without the need to know the exact length of the string. This is
especially useful as the exact length is most often not known
beforehand.
2023-01-20 10:47:22 +01:00

20 lines
570 B
Bash
Executable File

#!/bin/bash
# This is part of the rsyslog testbench, licensed under ASL 2.0
. ${srcdir:=.}/diag.sh init
generate_conf
add_conf '
template(name="out" type="list") {
property(name="STRUCTURED-DATA" position.from="2" position.to="-1")
constant(value="\n")
}
local4.debug action(type="omfile" template="out" file="'$RSYSLOG_OUT_LOG'")
'
startup
injectmsg_literal '<167>1 2003-03-01T01:00:00.000Z hostname1 sender - tag [tcpflood@32473 MSGNUM="0"] msgnum:irrelevant'
shutdown_when_empty
wait_shutdown
export EXPECTED='tcpflood@32473 MSGNUM="0"'
cmp_exact
exit_test