diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:28:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:28:20 +0000 |
commit | dcc721a95bef6f0d8e6d8775b8efe33e5aecd562 (patch) | |
tree | 66a2774cd0ee294d019efd71d2544c70f42b2842 /tests/imuxsock_hostname.sh | |
parent | Initial commit. (diff) | |
download | rsyslog-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/imuxsock_hostname.sh')
-rwxr-xr-x | tests/imuxsock_hostname.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/imuxsock_hostname.sh b/tests/imuxsock_hostname.sh new file mode 100755 index 0000000..6dcbd4e --- /dev/null +++ b/tests/imuxsock_hostname.sh @@ -0,0 +1,32 @@ +#!/bin/bash +# test set hostname +. ${srcdir:=.}/diag.sh init + +./syslog_caller -fsyslog_inject-l -m0 > /dev/null 2>&1 +no_liblogging_stdlog=$? +if [ $no_liblogging_stdlog -ne 0 ];then + echo "liblogging-stdlog not available - skipping test" + exit 77 +fi + +export NUMMESSAGES=1 +export QUEUE_EMPTY_CHECK_FUNC=wait_file_lines +generate_conf +add_conf ' +global(localHostName="rsyslog-testbench-hostname") + +module(load="../plugins/imuxsock/.libs/imuxsock" sysSock.use="off") +input(type="imuxsock" Socket="'$RSYSLOG_DYNNAME'-testbench_socket") + +template(name="outfmt" type="string" string="%hostname:%\n") +local1.* action(type="omfile" file=`echo $RSYSLOG_OUT_LOG` template="outfmt") +' +startup +# the message itself is irrelevant. The only important thing is +# there is one +./syslog_caller -m1 -C "uxsock:$RSYSLOG_DYNNAME-testbench_socket" +shutdown_when_empty +wait_shutdown +export EXPECTED="rsyslog-testbench-hostname" +cmp_exact +exit_test |