tests: Add interop test for dovecot_sasld using chasquid

This commit is contained in:
fox.cpp 2020-05-23 01:54:48 +03:00
parent 6651ce5be8
commit a46f2adc4c
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
3 changed files with 200 additions and 7 deletions

View file

@ -6,6 +6,7 @@ package tests_test
import (
"bufio"
"errors"
"flag"
"io/ioutil"
"os"
@ -77,7 +78,7 @@ const dovecotPasswd = `tester:{plain}123456:1000:1000::/home/user`
func runDovecot(t *testing.T) (string, *exec.Cmd) {
dovecotExec, err := exec.LookPath(DovecotExecutable)
if err != nil {
if err == exec.ErrNotFound {
if errors.Is(err, exec.ErrNotFound) {
t.Skip("No Dovecot executable found, skipping interop. tests")
}
t.Fatal(err)