mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 14:37:37 +03:00
tests: Add interop test for dovecot_sasld using chasquid
This commit is contained in:
parent
6651ce5be8
commit
a46f2adc4c
3 changed files with 200 additions and 7 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue