-
Notifications
You must be signed in to change notification settings - Fork 75
/
sender_test.go
453 lines (382 loc) · 11.1 KB
/
sender_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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
package mailyak
import (
"bytes"
"context"
"crypto/rand"
"crypto/rsa"
"crypto/tls"
"crypto/x509"
"crypto/x509/pkix"
"encoding/hex"
"fmt"
"io"
"math/big"
"net"
"net/smtp"
"reflect"
"testing"
"time"
)
var (
// Test RSA key & self-signed certificate populated by init()
testRSAKey *rsa.PrivateKey
testCertBytes []byte
testCert *x509.Certificate
)
// Initialise the TLS certificate and key material for TLS tests.
func init() {
key, err := rsa.GenerateKey(rand.Reader, 2048)
if err != nil {
panic(fmt.Sprintf("failed to generate RSA test key: %v", err))
}
testRSAKey = key
// Define the certificate template
self := &x509.Certificate{
Version: 3,
SerialNumber: big.NewInt(42),
Issuer: pkix.Name{
CommonName: "CA Bananas Inc",
},
Subject: pkix.Name{
CommonName: "The Banana Factory",
},
NotBefore: time.Now().Add(-1 * time.Hour),
NotAfter: time.Now().Add(time.Hour),
IPAddresses: []net.IP{
net.IPv4(127, 0, 0, 1),
},
}
// Sign the template certificate
cert, err := x509.CreateCertificate(rand.Reader, self, self, &testRSAKey.PublicKey, testRSAKey)
if err != nil {
panic(fmt.Sprintf("failed to generate self-signed test cert: %v", err))
}
testCertBytes = cert
// Parse the signed certificate
serverCert, err := x509.ParseCertificate(testCertBytes)
if err != nil {
panic(fmt.Sprintf("failed to bind to localhost: %v", err))
}
testCert = serverCert
}
// connAsserts wraps a net.Conn, performing writes and asserts responses within
// tests.
//
// Any errors cause the method to panic.
type connAsserts struct {
net.Conn
t *testing.T
buf *bytes.Buffer
}
func (c *connAsserts) Read(b []byte) (n int, err error) {
n, err = c.Conn.Read(b)
c.t.Logf("MailYak -> Server:\n%s\n", hex.Dump(b))
return n, err
}
func (c *connAsserts) Write(b []byte) (n int, err error) {
n, err = c.Conn.Write(b)
c.t.Logf("Server -> MailYak:\n%s\n", hex.Dump(b))
return n, err
}
func (c *connAsserts) Expect(want string) {
c.buf.Reset()
n, err := io.CopyN(c.buf, c, int64(len(want)))
if err != nil {
c.t.Fatalf("got error %v after reading %d bytes (got %q, want %q)", err, n, c.buf.String(), want)
}
if c.buf.String() != want {
c.t.Fatalf("read %q, want %q", c.buf.String(), want)
}
}
func (c *connAsserts) Respond(put string) {
n, err := c.Write([]byte(put))
if err != nil {
c.t.Fatalf("got error %v writing %q (wrote %d bytes)", err, put, n)
}
}
func newConnAsserts(c net.Conn, t *testing.T) *connAsserts {
return &connAsserts{
Conn: c,
t: t,
buf: &bytes.Buffer{},
}
}
// mockMail provides the methods for a sendableMail, allowing for deterministic
// MIME content in tests.
type mockMail struct {
localName string
toAddrs []string
fromAddr string
auth smtp.Auth
mime string
}
// getLocalName should return the sender domain to be used in the EHLO/HELO
// command.
func (m *mockMail) getLocalName() string {
return m.localName
}
// toAddrs should return a slice of email addresses to be added to the RCPT
// TO command.
func (m *mockMail) getToAddrs() []string {
return stripNames(m.toAddrs)
}
// fromAddr should return the address to be used in the MAIL FROM command.
func (m *mockMail) getFromAddr() string {
return m.fromAddr
}
// auth should return the smtp.Auth if configured, nil if not.
func (m *mockMail) getAuth() smtp.Auth {
return m.auth
}
// buildMime should write the generated MIME to w.
//
// The emailSender implementation is responsible for providing appropriate
// buffering of writes.
func (m *mockMail) buildMime(w io.Writer) error {
_, err := w.Write([]byte(m.mime))
return err
}
// TestSMTPProtocolExchange sends the same mock email over two different
// transports using two different sender implementations, ensuring parity
// between the two (specifically that both impleementations result in the same
// SMTP conversation).
//
// Because the mock server in the tests does not advertise STARTTLS support in,
// there is no upgrade.
func TestSMTPProtocolExchange(t *testing.T) {
t.Parallel()
const testTimeout = 15 * time.Second
tests := []struct {
name string
mail *mockMail
// Called once the Send() method is invoked, impersonating and asserting
// the client/server conversation.
connFn func(c *connAsserts)
// Error returned when sending over TLS
wantTLSErr error
// Error returned when sending over plaintext
wantPlaintextErr error
}{
{
name: "ok",
mail: &mockMail{
toAddrs: []string{
"Dom <[email protected]>",
},
fromAddr: "[email protected]",
mime: "bananas",
},
connFn: func(c *connAsserts) {
c.Respond("220 localhost ESMTP bananas\r\n")
c.Expect("EHLO localhost\r\n")
c.Respond("250-localhost Hola\r\n")
c.Respond("250 AUTH LOGIN PLAIN\r\n")
c.Expect("MAIL FROM:<[email protected]>\r\n")
c.Respond("250 OK\r\n")
c.Expect("RCPT TO:<[email protected]>\r\n")
c.Respond("250 OK\r\n")
c.Expect("RCPT TO:<[email protected]>\r\n")
c.Respond("250 OK\r\n")
c.Expect("RCPT TO:<[email protected]>\r\n")
c.Respond("250 OK\r\n")
c.Expect("DATA\r\n")
c.Respond("354 OK\r\n")
c.Expect("bananas\r\n.\r\n")
c.Respond("250 Will do friend\r\n")
c.Expect("QUIT\r\n")
c.Respond("221 Adios\r\n")
},
wantTLSErr: nil,
wantPlaintextErr: nil,
},
{
name: "with auth",
mail: &mockMail{
toAddrs: []string{
},
fromAddr: "[email protected]",
mime: "bananas",
auth: smtp.PlainAuth("ident", "user", "pass", "127.0.0.1"),
},
connFn: func(c *connAsserts) {
c.Respond("220 localhost ESMTP bananas\r\n")
c.Expect("EHLO localhost\r\n")
c.Respond("250-localhost Hola\r\n")
c.Respond("250 AUTH LOGIN PLAIN\r\n")
c.Expect("AUTH PLAIN aWRlbnQAdXNlcgBwYXNz\r\n")
c.Respond("235 Looks good\r\n")
c.Expect("MAIL FROM:<[email protected]>\r\n")
c.Respond("250 OK\r\n")
c.Expect("RCPT TO:<[email protected]>\r\n")
c.Respond("250 OK\r\n")
c.Expect("RCPT TO:<[email protected]>\r\n")
c.Respond("250 OK\r\n")
c.Expect("RCPT TO:<[email protected]>\r\n")
c.Respond("250 OK\r\n")
c.Expect("DATA\r\n")
c.Respond("354 OK\r\n")
c.Expect("bananas\r\n.\r\n")
c.Respond("250 Will do friend\r\n")
c.Expect("QUIT\r\n")
c.Respond("221 Adios\r\n")
},
wantTLSErr: nil,
wantPlaintextErr: nil,
},
{
name: "with localname",
mail: &mockMail{
toAddrs: []string{
"Dom <[email protected]>",
},
fromAddr: "[email protected]",
mime: "bananas",
localName: "example.com",
},
connFn: func(c *connAsserts) {
c.Respond("220 localhost ESMTP bananas\r\n")
c.Expect("EHLO example.com\r\n")
c.Respond("250-example.com Hola\r\n")
c.Respond("250 AUTH LOGIN PLAIN\r\n")
c.Expect("MAIL FROM:<[email protected]>\r\n")
c.Respond("250 OK\r\n")
c.Expect("RCPT TO:<[email protected]>\r\n")
c.Respond("250 OK\r\n")
c.Expect("RCPT TO:<[email protected]>\r\n")
c.Respond("250 OK\r\n")
c.Expect("RCPT TO:<[email protected]>\r\n")
c.Respond("250 OK\r\n")
c.Expect("DATA\r\n")
c.Respond("354 OK\r\n")
c.Expect("bananas\r\n.\r\n")
c.Respond("250 Will do friend\r\n")
c.Expect("QUIT\r\n")
c.Respond("221 Adios\r\n")
},
wantTLSErr: nil,
wantPlaintextErr: nil,
},
}
// handleConn provides the accept loop for both the TLS server, and the
// plain-text server, passing the accepted connection to the test actor
// func.
//
// Once the actor func has finished, done is closed.
handleConn := func(t *testing.T, l net.Listener, done chan<- struct{}, actor func(c *connAsserts)) {
defer close(done)
conn, err := l.Accept()
if err != nil {
panic(err)
}
defer conn.Close()
actor(newConnAsserts(conn, t))
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
// Send the mock email over each implementation of the sender
// interface, including initialisation with the respective MailYak
// constructor.
t.Run("Explicit_TLS", func(t *testing.T) {
t.Parallel()
ctx, cancel := context.WithTimeout(context.Background(), testTimeout)
defer cancel()
// Initialise a server TLS config using the self-signed test
// certificate and key material.
serverConfig := &tls.Config{
Certificates: []tls.Certificate{
{
Certificate: [][]byte{testCertBytes},
PrivateKey: testRSAKey,
},
},
}
// Bind a TLS-enabled TCP socket to some random port
socket, err := tls.Listen("tcp", "127.0.0.1:0", serverConfig)
if err != nil {
t.Fatalf("failed to bind to localhost: %v", err)
}
defer socket.Close()
handlerDone := make(chan struct{})
go handleConn(t, socket, handlerDone, tt.connFn)
// Build a root store for the self-signed certificate.
roots := x509.NewCertPool()
roots.AddCert(testCert)
// Initialise a TLS mailyak using the root store.
m, err := NewWithTLS(socket.Addr().String(), nil, &tls.Config{
RootCAs: roots,
ServerName: "127.0.0.1",
})
if err != nil {
t.Fatal(err)
}
// Call into the sender directly, giving it the mock
// sendableEmail
sendErr := make(chan error)
go func() {
sendErr <- m.sender.Send(tt.mail)
}()
// Wait for the SMTP conversation to complete
select {
case <-ctx.Done():
t.Fatal("timeout waiting for SMTP conversation to complete")
case <-handlerDone:
// The handler is complete, wait for the send error and
// check it matches the expected value.
select {
case <-ctx.Done():
t.Fatal("timeout waiting for Send() to return")
case err := <-sendErr:
if !reflect.DeepEqual(err, tt.wantTLSErr) {
t.Errorf("got %v, want %v", err, tt.wantTLSErr)
}
}
}
})
t.Run("Plaintext", func(t *testing.T) {
t.Parallel()
ctx, cancel := context.WithTimeout(context.Background(), testTimeout)
defer cancel()
// Start listening to a local plain-text socket
socket, err := net.Listen("tcp", "127.0.0.1:0")
if err != nil {
t.Fatalf("failed to bind to localhost: %v", err)
}
defer socket.Close()
handlerDone := make(chan struct{})
go handleConn(t, socket, handlerDone, tt.connFn)
m := New(socket.Addr().String(), nil)
// Call into the sender directly, giving it the mock
// sendableEmail
sendErr := make(chan error)
go func() {
sendErr <- m.sender.Send(tt.mail)
}()
// Wait for the SMTP conversation to complete
select {
case <-ctx.Done():
t.Fatal("timeout waiting for SMTP conversation to complete")
case <-handlerDone:
// The handler is complete, wait for the send error and
// check it matches the expected value.
select {
case <-ctx.Done():
t.Fatal("timeout waiting for Send() to return")
case err := <-sendErr:
if !reflect.DeepEqual(err, tt.wantPlaintextErr) {
t.Errorf("got %v, want %v", err, tt.wantPlaintextErr)
}
}
}
})
})
}
}