-
Notifications
You must be signed in to change notification settings - Fork 163
/
smtp_test.go
237 lines (209 loc) · 5.2 KB
/
smtp_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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
package emailverifier
import (
"strings"
"syscall"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestCheckSMTPUnSupportedVendor(t *testing.T) {
err := verifier.EnableAPIVerifier("unsupported_vendor")
assert.Error(t, err)
}
func TestCheckSMTPOK_ByApi(t *testing.T) {
cases := []struct {
name string
domain string
username string
expected *SMTP
}{
{
name: "yahoo exists",
domain: "yahoo.com",
username: "someone",
expected: &SMTP{
HostExists: true,
Deliverable: true,
},
},
{
name: "myyahoo exists",
domain: "myyahoo.com",
username: "someone",
expected: &SMTP{
HostExists: true,
Deliverable: true,
},
},
{
name: "yahoo no exists",
domain: "yahoo.com",
username: "123",
expected: &SMTP{
HostExists: true,
Deliverable: false,
},
},
{
name: "myyahoo no exists",
domain: "myyahoo.com",
username: "123",
expected: &SMTP{
HostExists: true,
Deliverable: false,
},
},
}
_ = verifier.EnableAPIVerifier(YAHOO)
defer verifier.DisableAPIVerifier(YAHOO)
for _, c := range cases {
test := c
t.Run(test.name, func(tt *testing.T) {
smtp, err := verifier.CheckSMTP(test.domain, test.username)
assert.NoError(t, err)
assert.Equal(t, test.expected, smtp)
})
}
}
func TestCheckSMTPOK_HostExists(t *testing.T) {
domain := "github.com"
smtp, err := verifier.CheckSMTP(domain, "")
expected := SMTP{
HostExists: true,
FullInbox: false,
CatchAll: true,
Disabled: false,
}
assert.NoError(t, err)
assert.Equal(t, &expected, smtp)
}
func TestCheckSMTPOK_CatchAllHost(t *testing.T) {
domain := "gmail.com"
smtp, err := verifier.CheckSMTP(domain, "")
expected := SMTP{
HostExists: true,
FullInbox: false,
CatchAll: false,
Disabled: false,
}
assert.NoError(t, err)
assert.Equal(t, &expected, smtp)
}
func TestCheckSMTPOK_NoCatchAllHost(t *testing.T) {
domain := "gmail.com"
smtp, err := verifier.CheckSMTP(domain, "")
expected := SMTP{
HostExists: true,
FullInbox: false,
CatchAll: false,
Disabled: false,
}
assert.NoError(t, err)
assert.Equal(t, &expected, smtp)
}
func TestCheckSMTPOK_NoCatchAllHostCatchAllCheckDisabled(t *testing.T) {
domain := "gmail.com"
var verifier = NewVerifier().EnableSMTPCheck().DisableCatchAllCheck()
smtp, err := verifier.CheckSMTP(domain, "")
expected := SMTP{
HostExists: true,
FullInbox: false,
CatchAll: true,
Disabled: false,
}
assert.NoError(t, err)
assert.Equal(t, &expected, smtp)
}
func TestCheckSMTPOK_UpdateFromEmail(t *testing.T) {
domain := "github.com"
verifier.FromEmail("from@email.top")
smtp, err := verifier.CheckSMTP(domain, "")
expected := SMTP{
HostExists: true,
FullInbox: false,
CatchAll: true,
Deliverable: false,
Disabled: false,
}
assert.NoError(t, err)
assert.Equal(t, &expected, smtp)
}
func TestCheckSMTPOK_UpdateHelloName(t *testing.T) {
domain := "github.com"
verifier.HelloName("email.top")
smtp, err := verifier.CheckSMTP(domain, "")
expected := SMTP{
HostExists: true,
FullInbox: false,
CatchAll: true,
Deliverable: false,
Disabled: false,
}
assert.NoError(t, err)
assert.Equal(t, &expected, smtp)
}
func TestCheckSMTPOK_WithNoExistUsername(t *testing.T) {
domain := "github.com"
username := "testing"
smtp, err := verifier.CheckSMTP(domain, username)
expected := SMTP{
HostExists: true,
FullInbox: false,
CatchAll: true,
Disabled: false,
}
assert.NoError(t, err)
assert.Equal(t, &expected, smtp)
}
func TestCheckSMTP_DisabledSMTPCheck(t *testing.T) {
domain := "github.com"
verifier.DisableSMTPCheck()
smtp, err := verifier.CheckSMTP(domain, "username")
verifier.EnableSMTPCheck()
assert.NoError(t, err)
assert.Nil(t, smtp)
}
func TestCheckSMTPOK_HostNotExists(t *testing.T) {
domain := "notExistHost.com"
smtp, err := verifier.CheckSMTP(domain, "")
assert.Error(t, err, ErrNoSuchHost)
assert.Equal(t, &SMTP{}, smtp)
}
func TestNewSMTPClientOK(t *testing.T) {
domain := "gmail.com"
timeout := 5 * time.Second
ret, _, err := newSMTPClient(domain, "", timeout, timeout)
assert.NotNil(t, ret)
assert.Nil(t, err)
}
func TestNewSMTPClientFailed_WithInvalidProxy(t *testing.T) {
domain := "gmail.com"
proxyURI := "socks5://user:password@127.0.0.1:1080?timeout=5s"
timeout := 5 * time.Second
ret, _, err := newSMTPClient(domain, proxyURI, timeout, timeout)
assert.Nil(t, ret)
assert.Error(t, err, syscall.ECONNREFUSED)
}
func TestNewSMTPClientFailed(t *testing.T) {
domain := "zzzz171777.com"
timeout := 5 * time.Second
ret, _, err := newSMTPClient(domain, "", timeout, timeout)
assert.Nil(t, ret)
assert.Error(t, err)
}
func TestDialSMTPFailed_NoPortIsConfigured(t *testing.T) {
disposableDomain := "zzzz1717.com"
timeout := 5 * time.Second
ret, err := dialSMTP(disposableDomain, "", timeout, timeout)
assert.Nil(t, ret)
assert.Error(t, err)
assert.True(t, strings.Contains(err.Error(), "missing port"))
}
func TestDialSMTPFailed_NoSuchHost(t *testing.T) {
disposableDomain := "zzzzyyyyaaa123.com:25"
timeout := 5 * time.Second
ret, err := dialSMTP(disposableDomain, "", timeout, timeout)
assert.Nil(t, ret)
assert.Error(t, err)
assert.True(t, strings.Contains(err.Error(), "no such host"))
}