mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
Now imapsql module does not handle authentication. (it was not doing it so well anyway) sql_table module was introduced and used in the default configuration as a replacement for functionality that was implemented by imapsql before. Parts of maddyctl code were rewritten to make it work transparently with any IMAP backend or credentials store. Closes #212.
73 lines
1.9 KiB
Go
73 lines
1.9 KiB
Go
package imapsql
|
|
|
|
import (
|
|
"flag"
|
|
"strconv"
|
|
"testing"
|
|
"time"
|
|
|
|
imapsql "github.com/foxcpp/go-imap-sql"
|
|
"github.com/foxcpp/maddy/internal/testutils"
|
|
)
|
|
|
|
var (
|
|
testDB string
|
|
testDSN string
|
|
testFsstore string
|
|
)
|
|
|
|
func init() {
|
|
flag.StringVar(&testDB, "sql.testdb", "", "Database to use for storage/sql benchmarks")
|
|
flag.StringVar(&testDSN, "sql.testdsn", "", "DSN to use for storage/sql benchmarks")
|
|
flag.StringVar(&testFsstore, "sql.testfsstore", "", "fsstore location to use for storage/sql benchmarks")
|
|
}
|
|
|
|
func createTestDB(tb testing.TB, compAlgo string) *Storage {
|
|
if testDB == "" || testDSN == "" || testFsstore == "" {
|
|
tb.Skip("-sql.testdb, -sql.testdsn and -sql.testfsstore should be specified to run this benchmark")
|
|
}
|
|
|
|
db, err := imapsql.New(testDB, testDSN, &imapsql.FSStore{Root: testFsstore}, imapsql.Opts{
|
|
LazyUpdatesInit: true,
|
|
CompressAlgo: compAlgo,
|
|
})
|
|
if err != nil {
|
|
tb.Fatal(err)
|
|
}
|
|
return &Storage{
|
|
Back: db,
|
|
}
|
|
}
|
|
|
|
func BenchmarkStorage_Delivery(b *testing.B) {
|
|
randomKey := "rcpt-" + strconv.FormatInt(time.Now().UnixNano(), 10) + "@example.org"
|
|
|
|
be := createTestDB(b, "")
|
|
if err := be.CreateIMAPAcct(randomKey); err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
testutils.BenchDelivery(b, be, "sender@example.org", []string{randomKey})
|
|
}
|
|
|
|
func BenchmarkStorage_DeliveryLZ4(b *testing.B) {
|
|
randomKey := "rcpt-" + strconv.FormatInt(time.Now().UnixNano(), 10) + "@example.org"
|
|
|
|
be := createTestDB(b, "lz4")
|
|
if err := be.CreateIMAPAcct(randomKey); err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
testutils.BenchDelivery(b, be, "sender@example.org", []string{randomKey})
|
|
}
|
|
|
|
func BenchmarkStorage_DeliveryZstd(b *testing.B) {
|
|
randomKey := "rcpt-" + strconv.FormatInt(time.Now().UnixNano(), 10) + "@example.org"
|
|
|
|
be := createTestDB(b, "zstd")
|
|
if err := be.CreateIMAPAcct(randomKey); err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
testutils.BenchDelivery(b, be, "sender@example.org", []string{randomKey})
|
|
}
|