maddy/internal/modify/replace_addr_test.go
fox.cpp 305fdddf24
Use context.Context all over the place
It is useful to define background tasks lifetimes more precisely,
especially involving timeouts and other cancellation methods.

On top of that, several tracing facilities are context-based (e.g.
runtime/trace), so it is possible to use them now.
2019-12-13 17:31:35 +03:00

55 lines
2.1 KiB
Go

package modify
import (
"context"
"testing"
"github.com/foxcpp/maddy/internal/config"
)
func replaceAddrFromArgs(t *testing.T, modName, from, to string) *replaceAddr {
r, err := NewReplaceAddr(modName, "", nil, []string{from, to})
if err != nil {
t.Fatal(err)
}
if err := r.Init(&config.Map{Block: &config.Node{}}); err != nil {
t.Fatal(err)
}
return r.(*replaceAddr)
}
func testReplaceAddr(t *testing.T, modName string, rewriter func(*replaceAddr, context.Context, string) (string, error)) {
test := func(from, to string, input, expectedOutput string) {
t.Helper()
r := replaceAddrFromArgs(t, modName, from, to)
output, err := rewriter(r, context.Background(), input)
if err != nil {
t.Fatal(err)
}
if output != expectedOutput {
t.Fatalf("wrong result: %s != %s", output, expectedOutput)
}
}
test("test@example.org", "test2@example.org", "test@example.org", "test2@example.org")
test("test@EXAmple.org", "test2@example.org", "teST@exaMPLe.org", "test2@example.org")
test(`/test@example\.org/`, "test2@example.org", "test@example.org", "test2@example.org")
test(`/test@EXAmple\.org/`, "test2@example.org", "teST@exaMPLe.org", "test2@example.org")
test(`/example/`, "test2@example.org", "teST@exaMPLe.org", "teST@exaMPLe.org")
test(`/(.+)@example\.org/`, "$1@example.com", "test@example.org", "test@example.com")
test(`/(.+)@example\.org/`, "$1@example.com", "teST@example.org", "teST@example.com")
test(`/(.+)@example\.org/`, "$1@example.com", "teST@example.org", "teST@example.com")
test("rcpt@\u00E9.example.com", "rcpt@foo.example.com", "rcpt@E\u0301.example.com", "rcpt@foo.example.com")
test(`/rcpt@é\.example\.com/`, "rcpt@foo.example.com", "rcpt@E\u0301.example.com", "rcpt@foo.example.com")
test("rcpt@E\u0301.example.com", "rcpt@foo.example.com", "rcpt@\u00E9.example.com", "rcpt@foo.example.com")
}
func TestReplaceAddr_RewriteSender(t *testing.T) {
testReplaceAddr(t, "replace_sender", (*replaceAddr).RewriteSender)
}
func TestReplaceAddr_RewriteRcpt(t *testing.T) {
testReplaceAddr(t, "replace_rcpt", (*replaceAddr).RewriteRcpt)
}