This commit is contained in:
angelnu 2022-01-31 21:59:27 +00:00
parent cd45490c16
commit db569891a5
6 changed files with 17 additions and 17 deletions

View file

@ -19,8 +19,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
package modify
import (
"reflect"
"context"
"reflect"
"testing"
"github.com/foxcpp/maddy/framework/config"
@ -57,7 +57,7 @@ func testReplaceAddr(t *testing.T, modName string) {
}
}
if ! reflect.DeepEqual(actualMulti,expectedMulti) {
if !reflect.DeepEqual(actualMulti, expectedMulti) {
t.Errorf("want %s, got %s", expectedMulti, actualMulti)
}
}
@ -95,15 +95,15 @@ func testReplaceAddr(t *testing.T, modName string) {
map[string][]string{
"\u00E9@foo.example.com": []string{"rcpt@foo.example.com"},
})
if modName == "modify.replace_rcpt" {
//multiple aliases
test("test@example.com", []string{"test@example.org", "test@example.net"},
map[string][]string{"test@example.com": []string{"test@example.org", "test@example.net"}})
test("test@example.com", []string{"1@example.com", "2@example.com", "3@example.com"},
map[string][]string{"test@example.com": []string{"1@example.com", "2@example.com", "3@example.com"}})
test("test@example.com", []string{"1@example.com", "2@example.com", "3@example.com"},
map[string][]string{"test@example.com": []string{"1@example.com", "2@example.com", "3@example.com"}})
}
}
func TestReplaceAddr_RewriteSender(t *testing.T) {