test: Fix Dovecot interop tests

Dovecot no longer prints the specific error message used
to detect successful startup.
This commit is contained in:
fox.cpp 2022-07-03 16:37:50 +03:00
parent ac4a75b7d5
commit 90f88c89cd
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -36,6 +36,7 @@ import (
"strings"
"syscall"
"testing"
"time"
"github.com/foxcpp/maddy/tests"
)
@ -47,6 +48,7 @@ func init() {
}
const dovecotConf = `base_dir = $ROOT/run/
state_dir = $ROOT/lib/
log_path = /dev/stderr
ssl = no
@ -149,7 +151,8 @@ func runDovecot(t *testing.T) (string, *exec.Cmd) {
line := scnr.Text()
// One of messages printed near completing initialization.
if strings.Contains(line, "master: Error: file_dotlock_open(/var/lib/dovecot/instances) failed: Permission denied") {
if strings.Contains(line, "starting up for imap") {
time.Sleep(500*time.Millisecond)
ready <- struct{}{}
}