mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
Extract several packages to form a public API
This commit is contained in:
parent
7d497f88f0
commit
bcceec4fe4
170 changed files with 385 additions and 392 deletions
23
framework/address/rfc6531_test.go
Normal file
23
framework/address/rfc6531_test.go
Normal file
|
@ -0,0 +1,23 @@
|
|||
package address
|
||||
|
||||
import (
|
||||
"strings"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestToASCII(t *testing.T) {
|
||||
test := addrFuncTest(t, ToASCII)
|
||||
test("test@тест.example.org", "test@xn--e1aybc.example.org", false)
|
||||
test("test@org."+strings.Repeat("x", 65535)+"\uFF00", "test@org."+strings.Repeat("x", 65535)+"\uFF00", true)
|
||||
test("тест@example.org", "тест@example.org", true)
|
||||
test("postmaster", "postmaster", false)
|
||||
test("postmaster@", "postmaster@", true)
|
||||
}
|
||||
|
||||
func TestToUnicode(t *testing.T) {
|
||||
test := addrFuncTest(t, ToUnicode)
|
||||
test("test@xn--e1aybc.example.org", "test@тест.example.org", false)
|
||||
test("test@xn--9999999999999999999a.org", "test@xn--9999999999999999999a.org", true)
|
||||
test("postmaster", "postmaster", false)
|
||||
test("postmaster@", "postmaster@", true)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue