mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-17 14:37:02 +00:00
Go 1.18 supports fuzzing natively, so this patch migrates our fuzzing tests to make use of it.
155 lines
3.4 KiB
Go
155 lines
3.4 KiB
Go
package normalize
|
|
|
|
import "testing"
|
|
|
|
func TestUser(t *testing.T) {
|
|
valid := []struct{ user, norm string }{
|
|
{"ÑAndÚ", "ñandú"},
|
|
{"Pingüino", "pingüino"},
|
|
}
|
|
for _, c := range valid {
|
|
nu, err := User(c.user)
|
|
if nu != c.norm {
|
|
t.Errorf("%q normalized to %q, expected %q", c.user, nu, c.norm)
|
|
}
|
|
if err != nil {
|
|
t.Errorf("%q error: %v", c.user, err)
|
|
}
|
|
|
|
}
|
|
|
|
invalid := []string{
|
|
"á é", "a\te", "x ", "x\xa0y", "x\x85y", "x\vy", "x\fy", "x\ry",
|
|
"henry\u2163", "\u265a", "\u00b9",
|
|
}
|
|
for _, u := range invalid {
|
|
nu, err := User(u)
|
|
if err == nil {
|
|
t.Errorf("expected User(%+q) to fail, but did not", u)
|
|
}
|
|
if nu != u {
|
|
t.Errorf("%+q failed norm, but returned %+q", u, nu)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestDomain(t *testing.T) {
|
|
valid := []struct{ user, norm string }{
|
|
{"ÑAndÚ", "ñandú"},
|
|
{"Pingüino", "pingüino"},
|
|
{"xn--aca-6ma", "ñaca"},
|
|
{"xn--lca", "ñ"}, // Punycode is for 'Ñ'.
|
|
{"e\u0301", "é"}, // Transform to NFC form.
|
|
}
|
|
for _, c := range valid {
|
|
nu, err := Domain(c.user)
|
|
if nu != c.norm {
|
|
t.Errorf("%q normalized to %q, expected %q", c.user, nu, c.norm)
|
|
}
|
|
if err != nil {
|
|
t.Errorf("%q error: %v", c.user, err)
|
|
}
|
|
|
|
}
|
|
|
|
invalid := []string{"xn---", "xn--xyz-ñ"}
|
|
for _, u := range invalid {
|
|
nu, err := Domain(u)
|
|
if err == nil {
|
|
t.Errorf("expected Domain(%+q) to fail, but did not", u)
|
|
}
|
|
if nu != u {
|
|
t.Errorf("%+q failed norm, but returned %+q", u, nu)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestAddr(t *testing.T) {
|
|
valid := []struct{ user, norm string }{
|
|
{"ÑAndÚ@pampa", "ñandú@pampa"},
|
|
{"Pingüino@patagonia", "pingüino@patagonia"},
|
|
{"pe\u0301@le\u0301a", "pé@léa"}, // Transform to NFC form.
|
|
}
|
|
for _, c := range valid {
|
|
nu, err := Addr(c.user)
|
|
if nu != c.norm {
|
|
t.Errorf("%q normalized to %q, expected %q", c.user, nu, c.norm)
|
|
}
|
|
if err != nil {
|
|
t.Errorf("%q error: %v", c.user, err)
|
|
}
|
|
}
|
|
|
|
invalid := []string{
|
|
"á é@i", "henry\u2163@throne", "a@xn---",
|
|
}
|
|
for _, u := range invalid {
|
|
nu, err := Addr(u)
|
|
if err == nil {
|
|
t.Errorf("expected Addr(%+q) to fail, but did not", u)
|
|
}
|
|
if nu != u {
|
|
t.Errorf("%+q failed norm, but returned %+q", u, nu)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestDomainToUnicode(t *testing.T) {
|
|
valid := []struct{ domain, expected string }{
|
|
{"<>", "<>"},
|
|
{"a@b", "a@b"},
|
|
{"a@Ñ", "a@ñ"},
|
|
{"xn--lca@xn--lca", "xn--lca@ñ"}, // Punycode is for 'Ñ'.
|
|
{"a@e\u0301", "a@é"}, // Transform to NFC form.
|
|
|
|
// Degenerate case, we don't expect to ever produce this; at least
|
|
// check it does not crash.
|
|
{"", "@"},
|
|
}
|
|
for _, c := range valid {
|
|
got, err := DomainToUnicode(c.domain)
|
|
if got != c.expected {
|
|
t.Errorf("DomainToUnicode(%q) = %q, expected %q",
|
|
c.domain, got, c.expected)
|
|
}
|
|
if err != nil {
|
|
t.Errorf("DomainToUnicode(%q) error: %v", c.domain, err)
|
|
}
|
|
}
|
|
|
|
invalid := []string{"a@xn---", "a@xn--xyz-ñ"}
|
|
for _, u := range invalid {
|
|
got, err := DomainToUnicode(u)
|
|
if err == nil {
|
|
t.Errorf("expected DomainToUnicode(%+q) to fail, but did not", u)
|
|
}
|
|
if got != u {
|
|
t.Errorf("%+q failed norm, but returned %+q", u, got)
|
|
}
|
|
}
|
|
}
|
|
|
|
func FuzzUser(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, user string) {
|
|
User(user)
|
|
})
|
|
}
|
|
|
|
func FuzzDomain(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, domain string) {
|
|
Domain(domain)
|
|
})
|
|
}
|
|
|
|
func FuzzAddr(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, addr string) {
|
|
Addr(addr)
|
|
})
|
|
}
|
|
|
|
func FuzzDomainToUnicode(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, addr string) {
|
|
DomainToUnicode(addr)
|
|
})
|
|
}
|