maddy/internal/msgpipeline/regress_test.go
fox.cpp bf188e454f
Move most code from the repo root into subdirectories
The intention is to keep to repo root clean while the list of packages
is slowly growing.

Additionally, a bunch of small (~30 LoC) files in the repo root is
merged into a single maddy.go file, for the same reason.

Most of the internal code is moved into the internal/ directory. Go
toolchain will make it impossible to import these packages from external
applications.

Some packages are renamed and moved into the pkg/ directory in the root.
According to https://github.com/golang-standards/project-layout this is
the de-facto standard to place "library code that's ok to use by
external applications" in.

To clearly define the purpose of top-level directories, README.md files
are added to each.
2019-12-06 01:35:12 +03:00

119 lines
3.5 KiB
Go

package msgpipeline
import (
"testing"
"github.com/foxcpp/maddy/internal/module"
"github.com/foxcpp/maddy/internal/testutils"
)
func TestMsgPipeline_Issue161(t *testing.T) {
target := testutils.Target{}
check1, check2 := testutils.Check{}, testutils.Check{}
d := MsgPipeline{
msgpipelineCfg: msgpipelineCfg{
globalChecks: []module.Check{&check1},
perSource: map[string]sourceBlock{},
defaultSource: sourceBlock{
checks: []module.Check{&check2},
perRcpt: map[string]*rcptBlock{},
defaultRcpt: &rcptBlock{
targets: []module.DeliveryTarget{&target},
},
},
},
Log: testutils.Logger(t, "msgpipeline"),
}
testutils.DoTestDelivery(t, &d, "whatever@whatever", []string{"whatever@whatever"})
if check2.ConnCalls != 1 {
t.Errorf("CheckConnection called %d times", check2.ConnCalls)
}
if check2.SenderCalls != 1 {
t.Errorf("CheckSender called %d times", check2.SenderCalls)
}
if check2.RcptCalls != 1 {
t.Errorf("CheckRcpt called %d times", check2.RcptCalls)
}
if check2.BodyCalls != 1 {
t.Errorf("CheckBody called %d times", check2.BodyCalls)
}
if check1.UnclosedStates != 0 || check2.UnclosedStates != 0 {
t.Fatalf("checks state objects leak or double-closed, alive counters: %v, %v", check1.UnclosedStates, check2.UnclosedStates)
}
}
func TestMsgPipeline_Issue161_2(t *testing.T) {
target := testutils.Target{}
check1, check2 := testutils.Check{}, testutils.Check{InstName: "check2"}
d := MsgPipeline{
msgpipelineCfg: msgpipelineCfg{
globalChecks: []module.Check{&check1},
perSource: map[string]sourceBlock{},
defaultSource: sourceBlock{
checks: []module.Check{&check1},
perRcpt: map[string]*rcptBlock{},
defaultRcpt: &rcptBlock{
checks: []module.Check{&check2},
targets: []module.DeliveryTarget{&target},
},
},
},
Log: testutils.Logger(t, "msgpipeline"),
}
testutils.DoTestDelivery(t, &d, "whatever@whatever", []string{"whatever@whatever"})
if check2.ConnCalls != 1 {
t.Errorf("CheckConnection called %d times", check2.ConnCalls)
}
if check2.SenderCalls != 1 {
t.Errorf("CheckSender called %d times", check2.SenderCalls)
}
if check2.RcptCalls != 1 {
t.Errorf("CheckRcpt called %d times", check2.RcptCalls)
}
if check1.UnclosedStates != 0 || check2.UnclosedStates != 0 {
t.Fatalf("checks state objects leak or double-closed, alive counters: %v, %v", check1.UnclosedStates, check2.UnclosedStates)
}
}
func TestMsgPipeline_Issue161_3(t *testing.T) {
target := testutils.Target{}
check1, check2 := testutils.Check{}, testutils.Check{}
d := MsgPipeline{
msgpipelineCfg: msgpipelineCfg{
globalChecks: []module.Check{&check1, &check2},
perSource: map[string]sourceBlock{},
defaultSource: sourceBlock{
perRcpt: map[string]*rcptBlock{},
defaultRcpt: &rcptBlock{
targets: []module.DeliveryTarget{&target},
},
},
},
Log: testutils.Logger(t, "msgpipeline"),
}
testutils.DoTestDelivery(t, &d, "whatever@whatever", []string{"whatever@whatever"})
if check2.ConnCalls != 1 {
t.Errorf("CheckConnection called %d times", check2.ConnCalls)
}
if check2.SenderCalls != 1 {
t.Errorf("CheckSender called %d times", check2.SenderCalls)
}
if check2.RcptCalls != 1 {
t.Errorf("CheckRcpt called %d times", check2.RcptCalls)
}
if check2.BodyCalls != 1 {
t.Errorf("CheckBody called %d times", check2.BodyCalls)
}
if check1.UnclosedStates != 0 || check2.UnclosedStates != 0 {
t.Fatalf("checks state objects leak or double-closed, alive counters: %v, %v", check1.UnclosedStates, check2.UnclosedStates)
}
}