-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckmail_test.go
70 lines (65 loc) · 2.26 KB
/
checkmail_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package checkmail
import (
"errors"
"testing"
)
var (
samples = []struct {
mail string
format bool
account bool // host+user should be in the test string
}{
{mail: "[email protected]", format: true, account: true},
{mail: "[email protected]", format: true, account: true},
{mail: "[email protected]", format: true, account: false},
{mail: "[email protected]", format: true, account: false},
{mail: " [email protected]", format: false, account: false},
{mail: "[email protected] ", format: false, account: false},
{mail: "[email protected]", format: true, account: false},
{mail: "[email protected]", format: true, account: false},
{mail: "@loopcontext.com", format: false, account: false},
{mail: " [email protected]", format: false, account: false},
{mail: "test [email protected]", format: false, account: false},
{mail: "ááá&é&ààà@loopcontext.com", format: false, account: false},
{mail: "test@[email protected]", format: false, account: false},
{mail: "test@wong domain wabbit.com", format: false, account: false},
{mail: "[email protected]", format: true, account: false},
{mail: "[email protected]", format: true, account: false},
{mail: "foobar@", format: false, account: false},
}
)
func TestErrors(t *testing.T) {
err := NewSMTPError(errors.New("500 *buzzer sounds*"))
if err.Error() != "500 *buzzer sounds*" {
t.Errorf("failed: %v", NewSMTPError(errors.New("500 *buzzer sounds*")).Error())
}
err = NewSMTPError(errors.New("200 OK"))
if err.Code() != "200" {
t.Errorf("failed: %v", NewSMTPError(errors.New("200 OK")).Error())
}
}
func TestValidateHost(t *testing.T) {
for _, s := range samples {
if !s.format {
continue
}
err := ValidateHost(s.mail)
if err != nil && s.account == true {
t.Errorf(`"%s" => unexpected error: %q`, s.mail, err)
}
if err == nil && s.account == false {
t.Errorf(`"%s" => expected error`, s.mail)
}
}
}
func TestValidateFormat(t *testing.T) {
for _, s := range samples {
err := ValidateFormat(s.mail)
if err != nil && s.format == true {
t.Errorf(`"%s" => unexpected error: %q`, s.mail, err)
}
if err == nil && s.format == false {
t.Errorf(`"%s" => expected error`, s.mail)
}
}
}