Albirew/nyaa-pantsu
Albirew
/
nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/utils/validator/user/functions_test.go

151 lignes
2.1 KiB
Go

package userValidator
import (
"testing"
"github.com/asaskevich/govalidator"
)
func TestValideUsername(t *testing.T) {
tests := [][]interface{}{
{
"lol",
true,
},
{
"àçésdsd",
true,
},
{
"[}\\_",
false,
},
{
"^!",
false,
},
{
"test ",
false,
},
{
"test done",
false,
},
{
"れんちょん",
true,
},
}
for _, val := range tests {
testVal := govalidator.IsUTFLetterNumeric(val[0].(string))
if testVal != val[1] {
t.Errorf("The test returned a result %t instead of %t for %s", testVal, val[1].(bool), val[0].(string))
}
}
}
func TestEmailValidation(t *testing.T) {
tests := [][]interface{}{
{
"lol@xd.uu",
true,
},
{
"someone.might.wann@this.mail",
true,
},
{
"disposable.style.email.with+symbol@example.com",
true,
},
{
"other.email-with-dash@example.com",
true,
},
{
"x@example.com",
true,
},
{
`"very.unusual.@.unusual.com"@example.com`,
true,
},
{
`very.(),:;<>[]\".VERY.\"very@\\ \"very\".unusual"@strange.example.com`,
false,
},
{
"example-indeed@strange-example.com",
true,
},
{
"admin@mailserver1",
false,
},
{
"#!$%&'*+-/=?^_`{}|~@example.org",
true,
},
{
`"()<>[]:,;@\\\"!#$%&'-/=?^_` + "`" + `{}| ~.a"@example.org`,
true,
},
{
`" "@example.org`,
true,
},
{
`example@s.solutions`,
true,
},
{
`Abc.example.com`,
false,
},
{
`A@b@c@example.com`,
false,
},
{
`a"b(c)d,e:f;g<h>i[j\k]l@example.com`,
false,
},
{
`just"not"right@example.com`,
false,
},
{
`this is"not\allowed@example.com`,
false,
},
{
`to\ to@xn-fsqu00a.xn-0zwm56d`,
true,
},
{
`1234567890123456789012345678901234567890123456789012345678901234+2323232@example.com`,
true,
},
{
`john..doe@example.com`,
false,
},
{
`john.doe@example..com`,
false,
},
{
`toto@[192.168.1.1]`,
true,
},
}
for _, val := range tests {
testVal := EmailValidation(val[0].(string))
if testVal != val[1] {
t.Errorf("The test returned a result %t instead of %t for %s", testVal, val[1].(bool), val[0].(string))
}
}
}