maddy/internal/msgpipeline/bodynonatomic_test.go
2022-01-27 23:13:56 +00:00

148 lines
4 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 (
"errors"
"testing"
"github.com/foxcpp/maddy/framework/module"
"github.com/foxcpp/maddy/internal/modify"
"github.com/foxcpp/maddy/internal/testutils"
)
type multipleErrs map[string]error
func (m multipleErrs) SetStatus(rcptTo string, err error) {
m[rcptTo] = err
}
func TestMsgPipeline_BodyNonAtomic(t *testing.T) {
err := errors.New("go away")
target := testutils.Target{
PartialBodyErr: map[string]error{
"tester@example.org": err,
},
}
d := MsgPipeline{
msgpipelineCfg: msgpipelineCfg{
perSource: map[string]sourceBlock{},
defaultSource: sourceBlock{
perRcpt: map[string]*rcptBlock{},
defaultRcpt: &rcptBlock{
targets: []module.DeliveryTarget{&target},
},
},
},
Log: testutils.Logger(t, "msgpipeline"),
}
c := multipleErrs{}
testutils.DoTestDeliveryNonAtomic(t, c, &d, "sender@example.org", []string{"tester@example.org", "tester2@example.org"})
if c["tester@example.org"] == nil {
t.Fatalf("no error for tester@example.org")
}
if c["tester@example.org"].Error() != err.Error() {
t.Errorf("wrong error for tester@example.org: %v", err)
}
}
func TestMsgPipeline_BodyNonAtomic_ModifiedRcpt(t *testing.T) {
err := errors.New("go away")
target := testutils.Target{
PartialBodyErr: map[string]error{
"tester-alias@example.org": err,
},
}
d := MsgPipeline{
msgpipelineCfg: msgpipelineCfg{
globalModifiers: modify.Group{
Modifiers: []module.Modifier{
testutils.Modifier{
InstName: "test_modifier",
RcptTo: map[string][]string{
"tester@example.org": []string{"tester-alias@example.org"},
},
},
},
},
perSource: map[string]sourceBlock{},
defaultSource: sourceBlock{
perRcpt: map[string]*rcptBlock{},
defaultRcpt: &rcptBlock{
targets: []module.DeliveryTarget{&target},
},
},
},
Log: testutils.Logger(t, "msgpipeline"),
}
c := multipleErrs{}
testutils.DoTestDeliveryNonAtomic(t, c, &d, "sender@example.org", []string{"tester@example.org"})
if c["tester@example.org"] == nil {
t.Fatalf("no error for tester@example.org")
}
if c["tester@example.org"].Error() != err.Error() {
t.Errorf("wrong error for tester@example.org: %v", err)
}
}
func TestMsgPipeline_BodyNonAtomic_ExpandAtomic(t *testing.T) {
err := errors.New("go away")
target, target2 := testutils.Target{
PartialBodyErr: map[string]error{
"tester@example.org": err,
},
}, testutils.Target{
BodyErr: err,
}
d := MsgPipeline{
msgpipelineCfg: msgpipelineCfg{
perSource: map[string]sourceBlock{},
defaultSource: sourceBlock{
perRcpt: map[string]*rcptBlock{},
defaultRcpt: &rcptBlock{
targets: []module.DeliveryTarget{&target, &target2},
},
},
},
Log: testutils.Logger(t, "msgpipeline"),
}
c := multipleErrs{}
testutils.DoTestDeliveryNonAtomic(t, c, &d, "sender@example.org", []string{"tester@example.org", "tester2@example.org"})
if c["tester@example.org"] == nil {
t.Fatalf("no error for tester@example.org")
}
if c["tester@example.org"].Error() != err.Error() {
t.Errorf("wrong error for tester@example.org: %v", err)
}
if c["tester2@example.org"] == nil {
t.Fatalf("no error for tester@example.org")
}
if c["tester2@example.org"].Error() != err.Error() {
t.Errorf("wrong error for tester@example.org: %v", err)
}
}