mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
e00cc187fa
* fix: make user creation errors helpful * fix linting and unit testing errors * fix linting * make zitadel config reusable * fix human validations * translate ssr errors * make zitadel config reusable * cover more translations for ssr * handle email validation message centrally * fix unit tests * fix linting * align signatures * use more precise wording * handle phone validation message centrally * fix: return specific profile errors * docs: edit comments * fix unit tests --------- Co-authored-by: Silvan <silvan.reusser@gmail.com>
75 lines
1.3 KiB
Go
75 lines
1.3 KiB
Go
package domain
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestEmailValid(t *testing.T) {
|
|
type args struct {
|
|
email *Email
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
result bool
|
|
}{
|
|
{
|
|
name: "empty email, invalid",
|
|
args: args{
|
|
email: &Email{},
|
|
},
|
|
result: false,
|
|
},
|
|
{
|
|
name: "only letters email, invalid",
|
|
args: args{
|
|
email: &Email{EmailAddress: "testemail"},
|
|
},
|
|
result: false,
|
|
},
|
|
{
|
|
name: "nothing after @, invalid",
|
|
args: args{
|
|
email: &Email{EmailAddress: "testemail@"},
|
|
},
|
|
result: false,
|
|
},
|
|
{
|
|
name: "email, valid",
|
|
args: args{
|
|
email: &Email{EmailAddress: "testemail@gmail.com"},
|
|
},
|
|
result: true,
|
|
},
|
|
{
|
|
name: "email, valid",
|
|
args: args{
|
|
email: &Email{EmailAddress: "test.email@gmail.com"},
|
|
},
|
|
result: true,
|
|
},
|
|
{
|
|
name: "email, valid",
|
|
args: args{
|
|
email: &Email{EmailAddress: "test/email@gmail.com"},
|
|
},
|
|
result: true,
|
|
},
|
|
{
|
|
name: "email, valid",
|
|
args: args{
|
|
email: &Email{EmailAddress: "test/email@gmail.com"},
|
|
},
|
|
result: true,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
result := tt.args.email.Validate() == nil
|
|
if result != tt.result {
|
|
t.Errorf("got wrong result: expected: %v, actual: %v ", tt.result, result)
|
|
}
|
|
})
|
|
}
|
|
}
|