1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00

flush logs on other log scanning functions

This commit is contained in:
downtownallday 2022-09-22 17:34:22 -04:00
parent 4531c90434
commit c9eb90800b
2 changed files with 14 additions and 10 deletions

View File

@ -358,13 +358,7 @@ EOF
return ${x[1]}
}
check_logs() {
local assert="${1:-false}"
[ "$1" == "true" -o "$1" == "false" ] && shift
local types=($@)
[ ${#types[@]} -eq 0 ] && types=(syslog slapd mail)
# flush records
flush_logs() {
local pid
if [ -e /var/run/rsyslogd.pid ]; then
# the pid file won't exist if rsyslogd was started with -iNONE
@ -373,12 +367,22 @@ check_logs() {
pid=$(/usr/bin/pidof rsyslogd)
fi
if [ "$GITHUB_ACTIONS" = "true" ]; then
systemctl restart rsyslogd >>$TEST_OF 2>&1
systemctl restart rsyslog >>$TEST_OF 2>&1
sleep 5
elif [ ! -z "$pid" ]; then
kill -HUP $pid >>$TEST_OF 2>&1
sleep 2
fi
}
check_logs() {
local assert="${1:-false}"
[ "$1" == "true" -o "$1" == "false" ] && shift
local types=($@)
[ ${#types[@]} -eq 0 ] && types=(syslog slapd mail)
# flush records
flush_logs
if array_contains syslog ${types[@]}; then
detect_syslog_error && $assert &&
@ -415,6 +419,7 @@ grep_postfix_log() {
local msg="$1"
local count
let count="$MAIL_LOG_LINECOUNT + 1"
flush_logs
tail --lines=+$count /var/log/mail.log 2>>$TEST_OF | grep -iF "$msg" >/dev/null 2>>$TEST_OF
return $?
}

View File

@ -307,7 +307,7 @@ test_mailbox_pipe() {
local outfile="/tmp/pipedrop.$$.out"
cat 2>>$TEST_OF >$cmd <<EOF
#!/bin/bash
cat > $outfile
echo "boo" > $outfile
EOF
chmod 755 $cmd
rm -f $outfile
@ -332,7 +332,6 @@ EOF
assert_python_failure $code "$output" SMTPAuthenticationError
check_logs
else
sleep 5
if grep_postfix_log "User doesn't exist: |$cmd@"; then
# ok
check_logs