maddy/internal/testutils/bench_delivery.go
fox.cpp db0874c2be
Migrate to latest go-smtp version
Fixes #661 among other minor things.
2024-01-21 14:41:57 +03:00

141 lines
4.1 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 testutils
import (
"bufio"
"context"
"crypto/sha1"
"encoding/hex"
"io"
"strconv"
"strings"
"testing"
"github.com/emersion/go-message/textproto"
"github.com/emersion/go-smtp"
"github.com/foxcpp/maddy/framework/buffer"
"github.com/foxcpp/maddy/framework/module"
)
// Empirically observed "around average" values.
const (
MessageBodySize = 100 * 1024
ExtraMessageHeaderFields = 10
ExtraMessageHeaderFieldSize = 50
)
const testHeaderString = "Content-Type: multipart/mixed; boundary=message-boundary\r\n" +
"Date: Sat, 19 Jun 2016 12:00:00 +0900\r\n" +
"From: Mitsuha Miyamizu <mitsuha.miyamizu@example.org>\r\n" +
"Reply-To: Mitsuha Miyamizu <mitsuha.miyamizu+replyto@example.org>\r\n" +
"Message-Id: 42@example.org\r\n" +
"MIME-Version: 1.0\r\n" +
"Content-Transfer-Encoding: 8but\r\n" +
"Subject: Your Name.\r\n" +
"To: Taki Tachibana <taki.tachibana@example.org>\r\n" +
"\r\n"
const testAltHeaderString = "Content-Type: multipart/alternative; boundary=b2\r\n" +
"\r\n"
const testTextHeaderString = "Content-Disposition: inline\r\n" +
"Content-Type: text/plain\r\n" +
"\r\n"
const testTextBodyString = "What's your name?"
const testTextString = testTextHeaderString + testTextBodyString
const testHTMLHeaderString = "Content-Disposition: inline\r\n" +
"Content-Type: text/html\r\n" +
"\r\n"
const testHTMLBodyString = "<div>What's <i>your</i> name?</div>"
const testHTMLString = testHTMLHeaderString + testHTMLBodyString
const testAttachmentHeaderString = "Content-Disposition: attachment; filename=note.txt\r\n" +
"Content-Type: text/plain\r\n" +
"\r\n"
const testAttachmentBodyString = "My name is Mitsuha."
const testAttachmentString = testAttachmentHeaderString + testAttachmentBodyString
const testBodyString = "--message-boundary\r\n" +
testAltHeaderString +
"\r\n--b2\r\n" +
testTextString +
"\r\n--b2\r\n" +
testHTMLString +
"\r\n--b2--\r\n" +
"\r\n--message-boundary\r\n" +
testAttachmentString +
"\r\n--message-boundary--\r\n"
var testMailString = testHeaderString + testBodyString + strings.Repeat("A", MessageBodySize)
func RandomMsg(b *testing.B) (module.MsgMetadata, textproto.Header, buffer.Buffer) {
IDRaw := sha1.Sum([]byte(b.Name()))
encodedID := hex.EncodeToString(IDRaw[:])
body := bufio.NewReader(strings.NewReader(testMailString))
hdr, _ := textproto.ReadHeader(body)
for i := 0; i < ExtraMessageHeaderFields; i++ {
hdr.Add("AAAAAAAAAAAA-"+strconv.Itoa(i), strings.Repeat("A", ExtraMessageHeaderFieldSize))
}
bodyBlob, _ := io.ReadAll(body)
return module.MsgMetadata{
DontTraceSender: true,
ID: encodedID,
}, hdr, buffer.MemoryBuffer{Slice: bodyBlob}
}
func BenchDelivery(b *testing.B, target module.DeliveryTarget, sender string, recipientTemplates []string) {
meta, header, body := RandomMsg(b)
benchCtx := context.Background()
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
delivery, err := target.Start(benchCtx, &meta, sender)
if err != nil {
b.Fatal(err)
}
for i, rcptTemplate := range recipientTemplates {
rcpt := strings.Replace(rcptTemplate, "X", strconv.Itoa(i), -1)
if err := delivery.AddRcpt(benchCtx, rcpt, smtp.RcptOptions{}); err != nil {
b.Fatal(err)
}
}
if err := delivery.Body(benchCtx, header, body); err != nil {
b.Fatal(err)
}
if err := delivery.Commit(benchCtx); err != nil {
b.Fatal(err)
}
}
}