rsyslog/tests/lmsig_ksi_ls12.sh
Rainer Gerhards 69ef6e329b fix bad bash coding style and disable shellcheck false positives
Also now permit interactivly running tests without explicitly setting
$srcdir. This now works if we are inside ./tests and fails, as before,
when we are in a different directory.

Detected by shellcheck via CodeFactor.io
2018-10-23 13:27:37 +02:00

42 lines
1.5 KiB
Bash
Executable File

#!/bin/bash
echo \[lmsig_ksi_ls12.sh\]: test ksi_ls12
rm -rf $srcdir/ksitest
. ${srcdir:=.}/diag.sh init
generate_conf
add_conf '
module(load="../plugins/imuxsock/.libs/imuxsock" sysSock.use="off")
input(type="imuxsock" Socket="/tmp/testbench_socket")
template(name="outfmt" type="string" string="%msg:%\n")
*.notice action(type="omfile" template="outfmt" file="./ksitest/messages" sig.randomsource="./resultdata/lmsig_ksi_ls12_async/random.txt" sig.provider="ksi_ls12" sig.syncmode="async" sig.hashFunction="SHA2-256" sig.block.levelLimit="8" sig.block.timeLimit="100" sig.aggregator.url="file://resultdata/lmsig_ksi_ls12_async/mockinput.bin" sig.aggregator.user="log1" sig.aggregator.key="log" sig.keepTreeHashes="on" sig.keepRecordHashes="on")
'
startup
#generate 100 messages
for i in {0..100}; do logger -d -u /tmp/testbench_socket "test log line $i"; done
# the sleep below is needed to prevent too-early termination of rsyslogd
./msleep 100
shutdown_when_empty # shut down rsyslogd when done processing messages
./msleep 2000
wait_shutdown # we need to wait until rsyslogd is finished!
#compare resulting files
cmp ksitest/messages.logsig.parts/block-signatures.dat resultdata/lmsig_ksi_ls12_async/messages.logsig.parts/block-signatures.dat
if [ ! $? -eq 0 ]; then
echo "lmsig_ksi_ls12.sh failed: block files differ"
exit 1
fi;
cmp ksitest/messages.logsig.parts/blocks.dat resultdata/lmsig_ksi_ls12_async/messages.logsig.parts/blocks.dat
if [ ! $? -eq 0 ]; then
echo "lmsig_ksi_ls12.sh failed: signature files differ"
exit 1
fi;
exit_test