mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 05:57:39 +03:00
98 lines
2.9 KiB
Go
98 lines
2.9 KiB
Go
/*
|
|
Maddy Mail Server - Composable all-in-one email server.
|
|
Copyright © 2019-2020 Max Mazurov <fox.cpp@disroot.org>, Maddy Mail Server contributors
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package msgpipeline
|
|
|
|
import (
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/foxcpp/maddy/framework/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)
|
|
}
|