generated from cds-snc/project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
server_test.go
304 lines (263 loc) · 7.07 KB
/
server_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
package main
import (
"encoding/json"
"io"
"net/http"
"net/http/httptest"
"strings"
"testing"
"github.com/stretchr/testify/assert"
)
func TestAuthPlain_Passes(t *testing.T) {
// Create a mock Session
session := Session{
Authenticated: false,
Config: &Config{
Smtp: struct {
Hostname string
Port int
Username string
Password string
UseTLS bool
TlsCertFile string
TlsKeyFile string
}{
Username: "test-username",
Password: "test-password",
},
},
}
// Call the AuthPlain method
err := session.AuthPlain("test-username", "test-password")
// Verify the result
assert.Equal(t, session.Authenticated, true)
assert.Nil(t, err)
}
func TestAuthPlain_Fails(t *testing.T) {
// Create a mock Session
session := Session{
Authenticated: false,
Config: &Config{
Smtp: struct {
Hostname string
Port int
Username string
Password string
UseTLS bool
TlsCertFile string
TlsKeyFile string
}{
Username: "test-username",
Password: "test-password",
},
},
}
// Call the AuthPlain method
err := session.AuthPlain("test-username", "test-password-1")
// Verify the result
assert.Equal(t, session.Authenticated, false)
assert.Equal(t, err.Error(), "invalid username or password")
}
func TestSession_Data(t *testing.T) {
// Create a mock Session
session := Session{
Authenticated: true,
Email: &NotifyEmail{
TemplateId: "test-template-id",
Personalisation: Body{
Subject: "Test Subject",
Body: "Test Body",
},
Attachments: []Attachment{
{
File: "test-file",
Filename: "test-filename",
SendingMethod: "test-sending-method",
},
},
Emails: []string{"[email protected]"},
},
Config: &Config{
Notify: struct {
ApiKey string
Hostname string
TemplateId string
}{
ApiKey: "test-api-key",
Hostname: "http://example.com",
},
},
}
// Create a mock response
mockResponse := `{"status": "success"}`
// Create a mock server
mockServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, "/v2/notifications/email", r.URL.Path)
assert.Equal(t, "POST", r.Method)
assert.Equal(t, "application/json", r.Header.Get("Content-Type"))
assert.Equal(t, "ApiKey-v1 test-api-key", r.Header.Get("Authorization"))
// Read the request body
body, err := io.ReadAll(r.Body)
assert.Nil(t, err)
// Unmarshal the request body
var requestPayload map[string]interface{}
err = json.Unmarshal(body, &requestPayload)
assert.Nil(t, err)
// Verify the request payload
assert.Equal(t, "test-template-id", requestPayload["template_id"])
assert.Equal(t, "Test Subject", requestPayload["personalisation"].(map[string]interface{})["subject"])
assert.Equal(t, "Test Body\r", requestPayload["personalisation"].(map[string]interface{})["body"])
assert.Equal(t, "test-file", requestPayload["personalisation"].(map[string]interface{})["attachment_0"].(map[string]interface{})["file"])
assert.Equal(t, "test-filename", requestPayload["personalisation"].(map[string]interface{})["attachment_0"].(map[string]interface{})["filename"])
assert.Equal(t, "test-sending-method", requestPayload["personalisation"].(map[string]interface{})["attachment_0"].(map[string]interface{})["sending_method"])
assert.Contains(t, [3]string{"[email protected]", "[email protected]", "[email protected]"}, requestPayload["email_address"])
// Write the mock response
w.WriteHeader(http.StatusCreated)
_, err = w.Write([]byte(mockResponse))
assert.Nil(t, err)
}))
defer mockServer.Close()
// Set the mock server URL as the NotifyClient hostname
session.Config.Notify.Hostname = mockServer.URL
email := "" +
"To: <[email protected]>\r\n" +
"Cc: <[email protected]>\r\n" +
"Bcc: <[email protected]>\r\n" +
"Subject: Test Subject\r\n" +
"\r\n" +
"Test Body\r\n"
// Call the Data method
err := session.Data(strings.NewReader(email))
// Verify the result
assert.Nil(t, err)
}
func TestSession_Logout(t *testing.T) {
// Create a mock Session
session := Session{}
// Call the Logout method
err := session.Logout()
// Verify the result
assert.Equal(t, session.Authenticated, false)
assert.Nil(t, err)
}
func TestSession_MailWithoutAuth(t *testing.T) {
// Create a mock Session
session := Session{
Authenticated: false,
}
// Call the Mail method
err := session.Mail("[email protected]", nil)
// Verify the result
assert.Equal(t, session.Authenticated, false)
assert.Equal(t, err.Error(), "not authenticated")
}
func TestSession_MailWithAuth(t *testing.T) {
// Create a mock Session
session := Session{
Authenticated: true,
}
// Call the Mail method
err := session.Mail("[email protected]", nil)
// Verify the result
assert.Equal(t, session.Authenticated, true)
assert.Nil(t, err)
}
func TestSession_RcptWithoutAuth(t *testing.T) {
// Create a mock Session
session := Session{
Authenticated: false,
}
// Call the Rcpt method
err := session.Rcpt("[email protected]", nil)
// Verify the result
assert.Equal(t, session.Authenticated, false)
assert.Equal(t, err.Error(), "not authenticated")
}
func TestSession_RcptWithAuth(t *testing.T) {
// Create a mock Session
session := Session{
Authenticated: true,
Email: &NotifyEmail{
Emails: []string{},
},
}
// Call the Rcpt method
err := session.Rcpt("[email protected]", nil)
// Verify the result
assert.Equal(t, session.Authenticated, true)
assert.Equal(t, session.Email.Emails, []string{"[email protected]"})
assert.Nil(t, err)
}
func TestSession_Reset(t *testing.T) {
// Create a mock Session
session := Session{
Authenticated: true,
Config: &Config{
Notify: struct {
ApiKey string
Hostname string
TemplateId string
}{
TemplateId: "template-id",
}},
Email: &NotifyEmail{
Emails: []string{"[email protected]"},
},
}
// Call the Reset method
session.Reset()
// Verify the result
assert.Equal(t, session.Authenticated, false)
assert.Equal(t, session.Email.TemplateId, "template-id")
assert.Equal(t, session.Email.Emails, []string(nil))
}
func Test_startSmtpServer_withoutTls(t *testing.T) {
// Create a mock Backend
config := Config{
Smtp: struct {
Hostname string
Port int
Username string
Password string
UseTLS bool
TlsCertFile string
TlsKeyFile string
}{
Hostname: "localhost",
Port: 2525,
Username: "test-username",
Password: "test-password",
UseTLS: false,
},
}
// Call the startSmtpServer method
go func() {
startSmtpServer(&config)
}()
}
func Test_startSmtpServer_withTls(t *testing.T) {
// Create a mock Backend
config := Config{
Smtp: struct {
Hostname string
Port int
Username string
Password string
UseTLS bool
TlsCertFile string
TlsKeyFile string
}{
Hostname: "localhost",
Port: 2525,
Username: "test-username",
Password: "test-password",
UseTLS: true,
TlsCertFile: "./example_certs/server.crt",
TlsKeyFile: "./example_certs/server.key",
},
}
// Call the startSmtpServer method
go func() {
startSmtpServer(&config)
}()
}