1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-18 14:47:03 +00:00

test: Move testing couriers to testlib

The testing couriers are currently only used in the queue tests, but we
also want to use them in smtpsrv tests so we can make them more robusts
by checking the emails got delivered.

This patch moves the testing couriers to testlib, and makes both queue
and smtpsrv use them.
This commit is contained in:
Alberto Bertogli
2019-12-01 18:19:50 +00:00
parent 99df5e7b57
commit a6a964ac3e
3 changed files with 110 additions and 91 deletions

View File

@@ -4,7 +4,6 @@ import (
"bytes" "bytes"
"fmt" "fmt"
"strings" "strings"
"sync"
"testing" "testing"
"time" "time"
@@ -13,46 +12,16 @@ import (
"blitiri.com.ar/go/chasquid/internal/testlib" "blitiri.com.ar/go/chasquid/internal/testlib"
) )
type deliverRequest struct {
from string
to string
data []byte
}
// Courier for test purposes. Never fails, and always remembers everything.
type TestCourier struct {
wg sync.WaitGroup
requests []*deliverRequest
reqFor map[string]*deliverRequest
sync.Mutex
}
func (tc *TestCourier) Deliver(from string, to string, data []byte) (error, bool) {
defer tc.wg.Done()
dr := &deliverRequest{from, to, data}
tc.Lock()
tc.requests = append(tc.requests, dr)
tc.reqFor[to] = dr
tc.Unlock()
return nil, false
}
func newTestCourier() *TestCourier {
return &TestCourier{
reqFor: map[string]*deliverRequest{},
}
}
func TestBasic(t *testing.T) { func TestBasic(t *testing.T) {
dir := testlib.MustTempDir(t) dir := testlib.MustTempDir(t)
defer testlib.RemoveIfOk(t, dir) defer testlib.RemoveIfOk(t, dir)
localC := newTestCourier() localC := testlib.NewTestCourier()
remoteC := newTestCourier() remoteC := testlib.NewTestCourier()
q := New(dir, set.NewString("loco"), aliases.NewResolver(), q := New(dir, set.NewString("loco"), aliases.NewResolver(),
localC, remoteC) localC, remoteC)
localC.wg.Add(2) localC.Expect(2)
remoteC.wg.Add(1) remoteC.Expect(1)
id, err := q.Put("from", []string{"am@loco", "x@remote", "nodomain"}, []byte("data")) id, err := q.Put("from", []string{"am@loco", "x@remote", "nodomain"}, []byte("data"))
if err != nil { if err != nil {
t.Fatalf("Put: %v", err) t.Fatalf("Put: %v", err)
@@ -62,22 +31,17 @@ func TestBasic(t *testing.T) {
t.Errorf("short ID: %v", id) t.Errorf("short ID: %v", id)
} }
localC.wg.Wait() localC.Wait()
remoteC.wg.Wait() remoteC.Wait()
// Make sure the delivered items leave the queue. // Make sure the delivered items leave the queue.
for d := time.Now().Add(2 * time.Second); time.Now().Before(d); { testlib.WaitFor(func() bool { return q.Len() == 0 }, 2*time.Second)
if q.Len() == 0 {
break
}
time.Sleep(20 * time.Millisecond)
}
if q.Len() != 0 { if q.Len() != 0 {
t.Fatalf("%d items not removed from the queue after delivery", q.Len()) t.Fatalf("%d items not removed from the queue after delivery", q.Len())
} }
cases := []struct { cases := []struct {
courier *TestCourier courier *testlib.TestCourier
expectedTo string expectedTo string
}{ }{
{localC, "nodomain"}, {localC, "nodomain"},
@@ -85,22 +49,22 @@ func TestBasic(t *testing.T) {
{remoteC, "x@remote"}, {remoteC, "x@remote"},
} }
for _, c := range cases { for _, c := range cases {
req := c.courier.reqFor[c.expectedTo] req := c.courier.ReqFor[c.expectedTo]
if req == nil { if req == nil {
t.Errorf("missing request for %q", c.expectedTo) t.Errorf("missing request for %q", c.expectedTo)
continue continue
} }
if req.from != "from" || req.to != c.expectedTo || if req.From != "from" || req.To != c.expectedTo ||
!bytes.Equal(req.data, []byte("data")) { !bytes.Equal(req.Data, []byte("data")) {
t.Errorf("wrong request for %q: %v", c.expectedTo, req) t.Errorf("wrong request for %q: %v", c.expectedTo, req)
} }
} }
} }
func TestDSNOnTimeout(t *testing.T) { func TestDSNOnTimeout(t *testing.T) {
localC := newTestCourier() localC := testlib.NewTestCourier()
remoteC := newTestCourier() remoteC := testlib.NewTestCourier()
dir := testlib.MustTempDir(t) dir := testlib.MustTempDir(t)
defer testlib.RemoveIfOk(t, dir) defer testlib.RemoveIfOk(t, dir)
q := New(dir, set.NewString("loco"), aliases.NewResolver(), q := New(dir, set.NewString("loco"), aliases.NewResolver(),
@@ -127,24 +91,24 @@ func TestDSNOnTimeout(t *testing.T) {
q.DumpString() q.DumpString()
// Launch the sending loop, expect 1 local delivery (the DSN). // Launch the sending loop, expect 1 local delivery (the DSN).
localC.wg.Add(1) localC.Expect(1)
go item.SendLoop(q) go item.SendLoop(q)
localC.wg.Wait() localC.Wait()
req := localC.reqFor["from@loco"] req := localC.ReqFor["from@loco"]
if req == nil { if req == nil {
t.Fatal("missing DSN") t.Fatal("missing DSN")
} }
if req.from != "<>" || req.to != "from@loco" || if req.From != "<>" || req.To != "from@loco" ||
!strings.Contains(string(req.data), "X-Failed-Recipients: to@to,") { !strings.Contains(string(req.Data), "X-Failed-Recipients: to@to,") {
t.Errorf("wrong DSN: %q", string(req.data)) t.Errorf("wrong DSN: %q", string(req.Data))
} }
} }
func TestAliases(t *testing.T) { func TestAliases(t *testing.T) {
localC := newTestCourier() localC := testlib.NewTestCourier()
remoteC := newTestCourier() remoteC := testlib.NewTestCourier()
dir := testlib.MustTempDir(t) dir := testlib.MustTempDir(t)
defer testlib.RemoveIfOk(t, dir) defer testlib.RemoveIfOk(t, dir)
q := New(dir, set.NewString("loco"), aliases.NewResolver(), q := New(dir, set.NewString("loco"), aliases.NewResolver(),
@@ -157,17 +121,17 @@ func TestAliases(t *testing.T) {
// Note the pipe aliases are tested below, as they don't use the couriers // Note the pipe aliases are tested below, as they don't use the couriers
// and it can be quite inconvenient to test them in this way. // and it can be quite inconvenient to test them in this way.
localC.wg.Add(2) localC.Expect(2)
remoteC.wg.Add(1) remoteC.Expect(1)
_, err := q.Put("from", []string{"ab@loco", "cd@loco"}, []byte("data")) _, err := q.Put("from", []string{"ab@loco", "cd@loco"}, []byte("data"))
if err != nil { if err != nil {
t.Fatalf("Put: %v", err) t.Fatalf("Put: %v", err)
} }
localC.wg.Wait() localC.Wait()
remoteC.wg.Wait() remoteC.Wait()
cases := []struct { cases := []struct {
courier *TestCourier courier *testlib.TestCourier
expectedTo string expectedTo string
}{ }{
{localC, "pq@loco"}, {localC, "pq@loco"},
@@ -175,33 +139,24 @@ func TestAliases(t *testing.T) {
{remoteC, "ata@hualpa"}, {remoteC, "ata@hualpa"},
} }
for _, c := range cases { for _, c := range cases {
req := c.courier.reqFor[c.expectedTo] req := c.courier.ReqFor[c.expectedTo]
if req == nil { if req == nil {
t.Errorf("missing request for %q", c.expectedTo) t.Errorf("missing request for %q", c.expectedTo)
continue continue
} }
if req.from != "from" || req.to != c.expectedTo || if req.From != "from" || req.To != c.expectedTo ||
!bytes.Equal(req.data, []byte("data")) { !bytes.Equal(req.Data, []byte("data")) {
t.Errorf("wrong request for %q: %v", c.expectedTo, req) t.Errorf("wrong request for %q: %v", c.expectedTo, req)
} }
} }
} }
// Dumb courier, for when we just want to return directly.
type DumbCourier struct{}
func (c DumbCourier) Deliver(from string, to string, data []byte) (error, bool) {
return nil, false
}
var dumbCourier = DumbCourier{}
func TestFullQueue(t *testing.T) { func TestFullQueue(t *testing.T) {
dir := testlib.MustTempDir(t) dir := testlib.MustTempDir(t)
defer testlib.RemoveIfOk(t, dir) defer testlib.RemoveIfOk(t, dir)
q := New(dir, set.NewString(), aliases.NewResolver(), q := New(dir, set.NewString(), aliases.NewResolver(),
dumbCourier, dumbCourier) testlib.DumbCourier, testlib.DumbCourier)
// Force-insert maxQueueSize items in the queue. // Force-insert maxQueueSize items in the queue.
oneID := "" oneID := ""
@@ -243,7 +198,7 @@ func TestPipes(t *testing.T) {
dir := testlib.MustTempDir(t) dir := testlib.MustTempDir(t)
defer testlib.RemoveIfOk(t, dir) defer testlib.RemoveIfOk(t, dir)
q := New(dir, set.NewString("loco"), aliases.NewResolver(), q := New(dir, set.NewString("loco"), aliases.NewResolver(),
dumbCourier, dumbCourier) testlib.DumbCourier, testlib.DumbCourier)
item := &Item{ item := &Item{
Message: Message{ Message: Message{
ID: <-newID, ID: <-newID,
@@ -303,21 +258,21 @@ func TestSerialization(t *testing.T) {
} }
// Create the queue; should load the // Create the queue; should load the
remoteC := newTestCourier() remoteC := testlib.NewTestCourier()
remoteC.wg.Add(1) remoteC.Expect(1)
q := New(dir, set.NewString("loco"), aliases.NewResolver(), q := New(dir, set.NewString("loco"), aliases.NewResolver(),
dumbCourier, remoteC) testlib.DumbCourier, remoteC)
q.Load() q.Load()
// Launch the sending loop, expect 1 remote delivery for the item we saved. // Launch the sending loop, expect 1 remote delivery for the item we saved.
remoteC.wg.Wait() remoteC.Wait()
req := remoteC.reqFor["to@to"] req := remoteC.ReqFor["to@to"]
if req == nil { if req == nil {
t.Fatal("email not delivered") t.Fatal("email not delivered")
} }
if req.from != "from@loco" || req.to != "to@to" { if req.From != "from@loco" || req.To != "to@to" {
t.Errorf("wrong email: %v", req) t.Errorf("wrong email: %v", req)
} }
} }

View File

@@ -18,7 +18,6 @@ import (
"time" "time"
"blitiri.com.ar/go/chasquid/internal/aliases" "blitiri.com.ar/go/chasquid/internal/aliases"
"blitiri.com.ar/go/chasquid/internal/courier"
"blitiri.com.ar/go/chasquid/internal/testlib" "blitiri.com.ar/go/chasquid/internal/testlib"
"blitiri.com.ar/go/chasquid/internal/userdb" "blitiri.com.ar/go/chasquid/internal/userdb"
) )
@@ -44,6 +43,10 @@ var (
// Will contain the generated server certificate as root CA. // Will contain the generated server certificate as root CA.
tlsConfig *tls.Config tlsConfig *tls.Config
// Test couriers, so we can validate that emails got sent.
localC = testlib.NewTestCourier()
remoteC = testlib.NewTestCourier()
// Max data size, in MiB. // Max data size, in MiB.
maxDataSizeMiB = 5 maxDataSizeMiB = 5
) )
@@ -131,9 +134,13 @@ func sendEmailWithAuth(tb testing.TB, c *smtp.Client, auth smtp.Auth) {
tb.Errorf("Data write: %v", err) tb.Errorf("Data write: %v", err)
} }
localC.Expect(1)
if err = w.Close(); err != nil { if err = w.Close(); err != nil {
tb.Errorf("Data close: %v", err) tb.Errorf("Data close: %v", err)
} }
localC.Wait()
} }
func TestSimple(t *testing.T) { func TestSimple(t *testing.T) {
@@ -296,17 +303,21 @@ func TestTooMuchData(t *testing.T) {
c := mustDial(t, ModeSMTP, true) c := mustDial(t, ModeSMTP, true)
defer c.Close() defer c.Close()
localC.Expect(1)
err := sendLargeEmail(t, c, maxDataSizeMiB-1) err := sendLargeEmail(t, c, maxDataSizeMiB-1)
if err != nil { if err != nil {
t.Errorf("Error sending large but ok email: %v", err) t.Errorf("Error sending large but ok email: %v", err)
} }
localC.Wait()
// Repeat the test - we want to check that the limit applies to each // Repeat the test - we want to check that the limit applies to each
// message, not the entire connection. // message, not the entire connection.
localC.Expect(1)
err = sendLargeEmail(t, c, maxDataSizeMiB-1) err = sendLargeEmail(t, c, maxDataSizeMiB-1)
if err != nil { if err != nil {
t.Errorf("Error sending large but ok email: %v", err) t.Errorf("Error sending large but ok email: %v", err)
} }
localC.Wait()
err = sendLargeEmail(t, c, maxDataSizeMiB+1) err = sendLargeEmail(t, c, maxDataSizeMiB+1)
if err == nil || err.Error() != "552 5.3.4 Message too big" { if err == nil || err.Error() != "552 5.3.4 Message too big" {
@@ -403,9 +414,6 @@ func BenchmarkManyEmails(b *testing.B) {
b.ResetTimer() b.ResetTimer()
for i := 0; i < b.N; i++ { for i := 0; i < b.N; i++ {
sendEmail(b, c) sendEmail(b, c)
// TODO: Make sendEmail() wait for delivery, and remove this.
time.Sleep(10 * time.Millisecond)
} }
} }
@@ -416,9 +424,6 @@ func BenchmarkManyEmailsParallel(b *testing.B) {
for pb.Next() { for pb.Next() {
sendEmail(b, c) sendEmail(b, c)
// TODO: Make sendEmail() wait for delivery, and remove this.
time.Sleep(100 * time.Millisecond)
} }
}) })
} }
@@ -561,8 +566,6 @@ func realMain(m *testing.M) int {
s.AddAddr(submissionAddr, ModeSubmission) s.AddAddr(submissionAddr, ModeSubmission)
s.AddAddr(submissionTLSAddr, ModeSubmissionTLS) s.AddAddr(submissionTLSAddr, ModeSubmissionTLS)
localC := &courier.Procmail{}
remoteC := &courier.SMTP{}
s.InitQueue(tmpDir+"/queue", localC, remoteC) s.InitQueue(tmpDir+"/queue", localC, remoteC)
s.InitDomainInfo(tmpDir + "/domaininfo") s.InitDomainInfo(tmpDir + "/domaininfo")

View File

@@ -6,7 +6,9 @@ import (
"net" "net"
"os" "os"
"strings" "strings"
"sync"
"testing" "testing"
"time"
) )
// MustTempDir creates a temporary directory, or dies trying. // MustTempDir creates a temporary directory, or dies trying.
@@ -64,3 +66,62 @@ func GetFreePort() string {
defer l.Close() defer l.Close()
return l.Addr().String() return l.Addr().String()
} }
func WaitFor(f func() bool, d time.Duration) bool {
start := time.Now()
for time.Since(start) < d {
if f() {
return true
}
time.Sleep(20 * time.Millisecond)
}
return false
}
type DeliverRequest struct {
From string
To string
Data []byte
}
// Courier for test purposes. Never fails, and always remembers everything.
type TestCourier struct {
wg sync.WaitGroup
Requests []*DeliverRequest
ReqFor map[string]*DeliverRequest
sync.Mutex
}
func (tc *TestCourier) Deliver(from string, to string, data []byte) (error, bool) {
defer tc.wg.Done()
dr := &DeliverRequest{from, to, data}
tc.Lock()
tc.Requests = append(tc.Requests, dr)
tc.ReqFor[to] = dr
tc.Unlock()
return nil, false
}
func (tc *TestCourier) Expect(i int) {
tc.wg.Add(i)
}
func (tc *TestCourier) Wait() {
tc.wg.Wait()
}
// NewTestCourier returns a new, empty TestCourier instance.
func NewTestCourier() *TestCourier {
return &TestCourier{
ReqFor: map[string]*DeliverRequest{},
}
}
type dumbCourier struct{}
func (c dumbCourier) Deliver(from string, to string, data []byte) (error, bool) {
return nil, false
}
// Dumb courier, for when we just don't care about the result.
var DumbCourier = dumbCourier{}