-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
email_test.go
400 lines (325 loc) · 12.1 KB
/
email_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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
package gomail
import (
"context"
"fmt"
"html/template"
"os"
"path/filepath"
"testing"
)
// TestMailService_NewEmail tests the method NewEmail()
func TestMailService_NewEmail(t *testing.T) {
t.Parallel()
mail := new(MailService)
mail.AutoText = true
mail.FromUsername = "no-reply"
mail.FromName = "No Reply"
mail.FromDomain = "example.com"
mail.Important = true
email := mail.NewEmail()
if email.FromAddress != mail.FromUsername+"@"+mail.FromDomain {
t.Fatalf("%s: FromAddress is invalid", t.Name())
}
if email.ReplyToAddress != email.FromAddress {
t.Fatalf("%s: ReplyToAddress is invalid", t.Name())
}
if !email.AutoText {
t.Fatalf("%s: AutoText is invalid", t.Name())
}
if !email.Important {
t.Fatalf("%s: Important is invalid", t.Name())
}
if email.FromName != mail.FromName {
t.Fatalf("%s: FromName is invalid", t.Name())
}
}
// ExampleMailService_NewEmail example using the NewEmail()
func ExampleMailService_NewEmail() {
mail := new(MailService)
mail.FromUsername = "no-reply"
mail.FromName = "No Reply"
mail.FromDomain = "example.com"
email := mail.NewEmail()
fmt.Printf("new email with from address: %s", email.FromAddress)
// output: new email with from address: [email protected]
}
// BenchmarkMailService_NewEmail runs benchmark on NewEmail()
func BenchmarkMailService_NewEmail(b *testing.B) {
mail := new(MailService)
mail.FromUsername = "no-reply"
mail.FromName = "No Reply"
mail.FromDomain = "example.com"
for i := 0; i < b.N; i++ {
_ = mail.NewEmail()
}
}
// TestEmail_AddAttachment tests the method AddAttachment()
func TestEmail_AddAttachment(t *testing.T) {
t.Parallel()
mail := new(MailService)
mail.FromUsername = "no-reply"
mail.FromName = "No Reply"
mail.FromDomain = "example.com"
email := mail.NewEmail()
email.AddAttachment("testName", "testType", nil)
email.AddAttachment("testName2", "testType2", nil)
if len(email.Attachments) != 2 {
t.Fatalf("%s: expected 2 attachments, got: %d", t.Name(), len(email.Attachments))
}
if email.Attachments[0].FileName != "testName" || email.Attachments[0].FileType != "testType" {
t.Fatalf("%s: expected value was wrong, got: %s", t.Name(), email.Attachments[0].FileName)
}
if email.Attachments[1].FileName != "testName2" || email.Attachments[1].FileType != "testType2" {
t.Fatalf("%s: expected value was wrong, got: %s", t.Name(), email.Attachments[0].FileName)
}
}
// ExampleEmail_AddAttachment example using the AddAttachment()
func ExampleEmail_AddAttachment() {
mail := new(MailService)
mail.FromUsername = "no-reply"
mail.FromName = "No Reply"
mail.FromDomain = "example.com"
email := mail.NewEmail()
email.AddAttachment("testName", "testType", nil)
fmt.Printf("attachment: %s", email.Attachments[0].FileName)
// output: attachment: testName
}
// BenchmarkEmail_AddAttachment runs benchmark on AddAttachment()
func BenchmarkEmail_AddAttachment(b *testing.B) {
mail := new(MailService)
mail.FromUsername = "no-reply"
mail.FromName = "No Reply"
mail.FromDomain = "example.com"
email := mail.NewEmail()
for i := 0; i < b.N; i++ {
email.AddAttachment("testName", "testType", nil)
}
}
// TestEmail_ParseTemplate tests the method ParseTemplate()
func TestEmail_ParseTemplate(t *testing.T) {
t.Parallel()
mail := new(MailService)
mail.AutoText = true
mail.FromUsername = "no-reply"
mail.FromName = "No Reply"
mail.FromDomain = "example.com"
mail.Important = true
email := mail.NewEmail()
// Parse a text template into memory
parsedTemplate, err := email.ParseTemplate(filepath.Join("examples", "example_template.txt"))
if err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
} else if parsedTemplate == nil {
t.Fatalf("%s: template was nil", t.Name())
} else if parsedTemplate.Name() != "example_template.txt" {
t.Fatalf("%s: template name expected [%s] does not match [%s]", t.Name(), "example_template.txt", parsedTemplate.Name())
}
// Parse - missing file
_, err = email.ParseTemplate(filepath.Join("examples", "missing_file.txt"))
if err == nil {
t.Fatalf("%s: error expected but was nil", t.Name())
}
}
// TestEmail_ParseHTMLTemplate tests the method ParseHTMLTemplate()
func TestEmail_ParseHTMLTemplate(t *testing.T) {
t.Parallel()
mail := new(MailService)
mail.AutoText = true
mail.FromUsername = "no-reply"
mail.FromName = "No Reply"
mail.FromDomain = "example.com"
mail.Important = true
email := mail.NewEmail()
// Parse an HTML template into memory
parsedTemplate, err := email.ParseHTMLTemplate(filepath.Join("examples", "example_template.html"))
if err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
} else if parsedTemplate == nil {
t.Fatalf("%s: template was nil", t.Name())
} else if parsedTemplate.Name() != "example_template.html" {
t.Fatalf("%s: template name expected [%s] does not match [%s]", t.Name(), "example_template.html", parsedTemplate.Name())
}
// Parse an HTML template and process CSS styles
parsedTemplate, err = email.ParseHTMLTemplate(filepath.Join("examples", "example_template_css.html"))
if err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
} else if parsedTemplate == nil {
t.Fatalf("%s: template was nil", t.Name())
} else if parsedTemplate.Name() != "example_template_css.html" {
t.Fatalf("%s: template name expected [%s] does not match [%s]", t.Name(), "example_template_css.html", parsedTemplate.Name())
}
// Parse - missing file
_, err = email.ParseHTMLTemplate(filepath.Join("examples", "missing_file.html"))
if err == nil {
t.Fatalf("%s: error expected but was nil", t.Name())
}
}
// TestEmail_ApplyTemplates tests the method ApplyTemplates()
func TestEmail_ApplyTemplates(t *testing.T) {
t.Parallel()
mail := new(MailService)
mail.AutoText = true
mail.FromUsername = "no-reply"
mail.FromName = "No Reply"
mail.FromDomain = "example.com"
mail.Important = true
email := mail.NewEmail()
// Parse a text template into memory
parsedTemplate, err := email.ParseTemplate(filepath.Join("examples", "example_template.txt"))
if err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
} else if parsedTemplate == nil {
t.Fatalf("%s: template was nil", t.Name())
} else if parsedTemplate.Name() != "example_template.txt" {
t.Fatalf("%s: template name expected [%s] does not match [%s]", t.Name(), "example_template.txt", parsedTemplate.Name())
}
// Set the css theme
if email.CSS, err = os.ReadFile(filepath.Join("examples", "example_theme.css")); err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
}
// Parse an HTML template and process CSS styles
var parsedHTMLTemplate *template.Template
parsedHTMLTemplate, err = email.ParseHTMLTemplate(filepath.Join("examples", "example_template_css.html"))
if err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
} else if parsedHTMLTemplate == nil {
t.Fatalf("%s: template was nil", t.Name())
} else if parsedHTMLTemplate.Name() != "example_template_css.html" {
t.Fatalf("%s: template name expected [%s] does not match [%s]", t.Name(), "example_template_css.html", parsedHTMLTemplate.Name())
}
// Apply the data to the template
if err = email.ApplyTemplates(parsedHTMLTemplate, parsedTemplate, mail); err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
}
// Apply no data
if err = email.ApplyTemplates(parsedHTMLTemplate, parsedTemplate, nil); err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
}
// Get error from missing template variable
if err = email.ApplyTemplates(parsedHTMLTemplate, parsedTemplate, "no data"); err == nil {
t.Fatalf("%s: error should have occurred", t.Name())
}
}
// TestMailService_SendEmail tests the method SendEmail()
func TestMailService_SendEmail(t *testing.T) {
t.Parallel()
mail := new(MailService)
mail.AutoText = true
mail.FromUsername = "no-reply"
mail.FromName = "No Reply"
mail.FromDomain = "example.com"
mail.Important = true
// Use the AWS SES provider
mail.AwsSesAccessID = "1234567"
mail.AwsSesSecretKey = "1234567"
// Use the Postmark provider
mail.PostmarkServerToken = "1234567"
// Use the Mandrill provider
mail.MandrillAPIKey = "1234567"
// Use the SMTP provider
mail.SMTPPort = 25
mail.SMTPUsername = "fake"
mail.SMTPPassword = "fake"
mail.SMTPHost = "example.com"
// Start the mail service
err := mail.StartUp()
if err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
}
// Set mock interface(s)
mail.postmarkService = &mockPostmarkInterface{}
mail.mandrillService = &mockMandrillInterface{}
mail.smtpClient = newMockSMTPClient()
mail.awsSesService = &mockAwsSesInterface{}
email := mail.NewEmail()
email.Subject = "Test subject"
email.PlainTextContent = "Test email content"
email.Recipients = append(email.Recipients, "[email protected]")
// Valid (Postmark)
if err = mail.SendEmail(context.Background(), email, Postmark); err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
}
// Valid (AWS SES)
if err = mail.SendEmail(context.Background(), email, AwsSes); err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
}
// Valid (Mandrill)
if err = mail.SendEmail(context.Background(), email, Mandrill); err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
}
// Valid (SMTP)
if err = mail.SendEmail(context.Background(), email, SMTP); err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
}
}
// TestMailService_SendEmailInValid tests the method SendEmail()
func TestMailService_SendEmailInValid(t *testing.T) {
t.Parallel()
mail := new(MailService)
mail.AutoText = true
mail.FromUsername = "no-reply"
mail.FromName = "No Reply"
mail.FromDomain = "example.com"
mail.Important = true
// Use the Postmark provider
mail.PostmarkServerToken = "1234567"
// Start the mail service
err := mail.StartUp()
if err != nil {
t.Fatalf("%s: error occurred: %s", t.Name(), err.Error())
}
// Set mock interface(s)
mail.postmarkService = &mockPostmarkInterface{}
email := mail.NewEmail()
// Invalid provider
err = mail.SendEmail(context.Background(), email, 999)
if err == nil {
t.Fatalf("%s: error was expected, provider was invalid", t.Name())
}
// Invalid provider - not in available list
err = mail.SendEmail(context.Background(), email, AwsSes)
if err == nil {
t.Fatalf("%s: error was expected, provider was not in available list", t.Name())
}
// Invalid - subject
err = mail.SendEmail(context.Background(), email, Postmark)
if err == nil {
t.Fatalf("%s: error was expected, subject was invalid", t.Name())
}
email.Subject = "Subject exits now"
// Invalid - plain text missing
err = mail.SendEmail(context.Background(), email, Postmark)
if err == nil {
t.Fatalf("%s: error was expected, subject was invalid", t.Name())
}
email.PlainTextContent = "Plain text exits now"
// Invalid - recipients missing
err = mail.SendEmail(context.Background(), email, Postmark)
if err == nil {
t.Fatalf("%s: error was expected, subject was invalid", t.Name())
}
email.Recipients = append(email.Recipients, "[email protected]")
// Too many TO recipients
for recipients := 1; recipients <= maxToRecipients+1; recipients++ {
email.Recipients = append(email.Recipients, "[email protected]")
}
if err = mail.SendEmail(context.Background(), email, Postmark); err == nil {
t.Fatalf("%s: error was expected, too many recipients, amount: %d", t.Name(), len(email.Recipients))
}
email.Recipients = []string{"[email protected]"}
// Too many CC recipients
for recipients := 1; recipients <= maxCcRecipients+1; recipients++ {
email.RecipientsCc = append(email.RecipientsCc, "[email protected]")
}
if err = mail.SendEmail(context.Background(), email, Postmark); err == nil {
t.Fatalf("%s: error was expected, too many recipients, amount: %d", t.Name(), len(email.RecipientsCc))
}
email.RecipientsCc = []string{"[email protected]"}
// Too many BCC recipients
for recipients := 1; recipients <= maxBccRecipients+1; recipients++ {
email.RecipientsBcc = append(email.RecipientsBcc, "[email protected]")
}
if err = mail.SendEmail(context.Background(), email, Postmark); err == nil {
t.Fatalf("%s: error was expected, too many recipients, amount: %d", t.Name(), len(email.RecipientsBcc))
}
}