mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 14:37:37 +03:00
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.
80 lines
2.2 KiB
Go
80 lines
2.2 KiB
Go
package msgpipeline
|
|
|
|
import (
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/foxcpp/maddy/internal/module"
|
|
"github.com/foxcpp/maddy/internal/testutils"
|
|
)
|
|
|
|
func BenchmarkMsgPipelineSimple(b *testing.B) {
|
|
target := testutils.Target{InstName: "test_target", DiscardMessages: true}
|
|
d := MsgPipeline{msgpipelineCfg: msgpipelineCfg{
|
|
perSource: map[string]sourceBlock{},
|
|
defaultSource: sourceBlock{
|
|
perRcpt: map[string]*rcptBlock{},
|
|
defaultRcpt: &rcptBlock{
|
|
targets: []module.DeliveryTarget{&target},
|
|
},
|
|
},
|
|
}}
|
|
|
|
testutils.BenchDelivery(b, &d, "sender@example.org", []string{"rcpt-X@example.org"})
|
|
}
|
|
|
|
func BenchmarkMsgPipelineGlobalChecks(b *testing.B) {
|
|
testWithCount := func(checksCount int) {
|
|
b.Run(strconv.Itoa(checksCount), func(b *testing.B) {
|
|
checks := make([]module.Check, 0, checksCount)
|
|
for i := 0; i < checksCount; i++ {
|
|
checks = append(checks, &testutils.Check{InstName: "check_" + strconv.Itoa(i)})
|
|
}
|
|
|
|
target := testutils.Target{InstName: "test_target", DiscardMessages: true}
|
|
d := MsgPipeline{msgpipelineCfg: msgpipelineCfg{
|
|
globalChecks: checks,
|
|
perSource: map[string]sourceBlock{},
|
|
defaultSource: sourceBlock{
|
|
perRcpt: map[string]*rcptBlock{},
|
|
defaultRcpt: &rcptBlock{
|
|
targets: []module.DeliveryTarget{&target},
|
|
},
|
|
},
|
|
}}
|
|
|
|
testutils.BenchDelivery(b, &d, "sender@example.org", []string{"rcpt-X@example.org"})
|
|
})
|
|
}
|
|
|
|
testWithCount(5)
|
|
testWithCount(10)
|
|
testWithCount(15)
|
|
}
|
|
|
|
func BenchmarkMsgPipelineTargets(b *testing.B) {
|
|
testWithCount := func(targetCount int) {
|
|
b.Run(strconv.Itoa(targetCount), func(b *testing.B) {
|
|
targets := make([]module.DeliveryTarget, 0, targetCount)
|
|
for i := 0; i < targetCount; i++ {
|
|
targets = append(targets, &testutils.Target{InstName: "target_" + strconv.Itoa(i), DiscardMessages: true})
|
|
}
|
|
|
|
d := MsgPipeline{msgpipelineCfg: msgpipelineCfg{
|
|
perSource: map[string]sourceBlock{},
|
|
defaultSource: sourceBlock{
|
|
perRcpt: map[string]*rcptBlock{},
|
|
defaultRcpt: &rcptBlock{
|
|
targets: targets,
|
|
},
|
|
},
|
|
}}
|
|
|
|
testutils.BenchDelivery(b, &d, "sender@example.org", []string{"rcpt-X@example.org"})
|
|
})
|
|
}
|
|
|
|
testWithCount(5)
|
|
testWithCount(10)
|
|
testWithCount(15)
|
|
}
|