-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver_test.go
586 lines (472 loc) · 18 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
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
//
// Copyright (c) 2021-present Sonatype, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//go:build go1.16
package main
import (
"encoding/json"
"fmt"
"net/http"
"net/http/httptest"
"os"
"strings"
"testing"
"time"
"github.com/DATA-DOG/go-sqlmock"
"github.com/google/go-github/v64/github"
"github.com/labstack/echo/v4"
"github.com/sonatype-nexus-community/the-cla/db"
ourGithub "github.com/sonatype-nexus-community/the-cla/github"
"github.com/sonatype-nexus-community/the-cla/types"
"github.com/stretchr/testify/assert"
"go.uber.org/zap/zaptest"
webhook "gopkg.in/go-playground/webhooks.v5/github"
)
func resetEnvVariable(t *testing.T, variableName, originalValue string) {
if originalValue == "" {
assert.NoError(t, os.Unsetenv(variableName))
} else {
assert.NoError(t, os.Setenv(variableName, originalValue))
}
}
func resetEnvVarPGHost(t *testing.T, origEnvPGHost string) {
resetEnvVariable(t, envPGHost, origEnvPGHost)
}
func TestZapLoggerFilterSkipsELB(t *testing.T) {
req := httptest.NewRequest("", "/", nil)
req.Header.Set("User-Agent", "bing ELB-HealthChecker yadda")
logger := zaptest.NewLogger(t)
result := ZapLoggerFilterAwsElb(logger)
//handlerFunc := func(next echo.HandlerFunc) echo.HandlerFunc {
// return func(c echo.Context) error {
// return nil
// }
//}
//r2 := result(handlerFunc)
//assert.Nil(t, result)
// @TODO figure out how to test these hoops
result(nil)
}
func TestMainDBOpenPanic(t *testing.T) {
errRecovered = nil
origEnvPGHost := os.Getenv(envPGHost)
defer func() {
resetEnvVarPGHost(t, origEnvPGHost)
}()
assert.NoError(t, os.Setenv(envPGHost, "bogus-db-hostname"))
defer func() {
errRecovered = nil
}()
main()
assert.True(t, strings.HasPrefix(errRecovered.Error(), "failed to ping database. host: bogus-db-hostname, port: "))
}
const mockClaText = `mock Cla text.`
func setupMockContextCLA(t *testing.T) echo.Context {
logger = zaptest.NewLogger(t)
// Setup
e := echo.New()
req := httptest.NewRequest(http.MethodPost, pathClaText, strings.NewReader(mockClaText))
req.Header.Set(echo.HeaderContentType, echo.MIMETextPlainCharsetUTF8)
rec := httptest.NewRecorder()
c := e.NewContext(req, rec)
return c
}
func TestHandleRetrieveCLAText_MissingClaURL(t *testing.T) {
origClaUrl := os.Getenv(envClaUrl)
defer func() {
resetEnvVariable(t, envClaUrl, origClaUrl)
}()
resetEnvVariable(t, envClaUrl, "")
err := handleRetrieveCLAText(setupMockContextCLA(t))
assert.EqualError(t, err, msgMissingClaUrl)
}
func TestHandleRetrieveCLAText_BadResponseCode(t *testing.T) {
origClaUrl := os.Getenv(envClaUrl)
defer func() {
resetEnvVariable(t, envClaUrl, origClaUrl)
}()
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodGet, r.Method)
assert.Equal(t, pathClaText, r.URL.EscapedPath())
w.WriteHeader(http.StatusForbidden)
}))
defer ts.Close()
assert.NoError(t, os.Setenv(envClaUrl, ts.URL+pathClaText))
assert.EqualError(t, handleRetrieveCLAText(setupMockContextCLA(t)), "unexpected cla text response code: 403")
}
func TestHandleRetrieveCLAText(t *testing.T) {
callCount := 0
origClaUrl := os.Getenv(envClaUrl)
defer func() {
resetEnvVariable(t, envClaUrl, origClaUrl)
}()
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodGet, r.Method)
assert.Equal(t, pathClaText, r.URL.EscapedPath())
callCount += 1
w.WriteHeader(http.StatusOK)
_, _ = w.Write([]byte(mockClaText))
}))
defer ts.Close()
assert.NoError(t, os.Setenv(envClaUrl, ts.URL+pathClaText))
assert.NoError(t, handleRetrieveCLAText(setupMockContextCLA(t)))
assert.Equal(t, callCount, 1)
// Ensure that subsequent calls use the cache
assert.NoError(t, handleRetrieveCLAText(setupMockContextCLA(t)))
assert.Equal(t, callCount, 1)
}
func TestHandleRetrieveCLATextWithBadURL(t *testing.T) {
callCount := 0
origClaUrl := os.Getenv(envClaUrl)
defer func() {
resetEnvVariable(t, envClaUrl, origClaUrl)
}()
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodGet, r.Method)
assert.Equal(t, pathClaText, r.URL.EscapedPath())
callCount += 1
// nobody home, be we should not even be knocking on this door - call should not occur
w.WriteHeader(http.StatusNotFound)
}))
defer ts.Close()
assert.NoError(t, os.Setenv(envClaUrl, "badURLProtocol"+ts.URL+pathClaText))
assert.Error(t, handleRetrieveCLAText(setupMockContextCLA(t)), `unsupported protocol scheme "badurlprotocolhttp"`)
assert.Equal(t, callCount, 0)
}
func setupMockContextOAuth(t *testing.T, queryParams map[string]string) (c echo.Context, rec *httptest.ResponseRecorder) {
logger = zaptest.NewLogger(t)
// Setup
e := echo.New()
req := httptest.NewRequest(http.MethodGet, pathOAuthCallback, strings.NewReader("mock OAuth stuff"))
q := req.URL.Query()
for k, v := range queryParams {
q.Add(k, v)
}
req.URL.RawQuery = q.Encode()
rec = httptest.NewRecorder()
c = e.NewContext(req, rec)
return
}
func TestHandleProcessGitHubOAuthMissingQueryParamState(t *testing.T) {
c, rec := setupMockContextOAuth(t, map[string]string{})
assert.NoError(t, handleProcessGitHubOAuth(c))
assert.Equal(t, 0, c.Response().Status)
assert.Equal(t, "", rec.Body.String())
}
func setupMockContextWebhook(t *testing.T, headers map[string]string, prEvent github.PullRequestEvent) (c echo.Context, rec *httptest.ResponseRecorder) {
logger = zaptest.NewLogger(t)
// Setup
e := echo.New()
reqBody, err := json.Marshal(prEvent)
assert.NoError(t, err)
req := httptest.NewRequest(http.MethodPost, pathWebhook, strings.NewReader(string(reqBody)))
for k, v := range headers {
req.Header.Set(k, v)
}
rec = httptest.NewRecorder()
c = e.NewContext(req, rec)
return
}
func TestHandleProcessWebhookMissingHeaderGitHubEvent(t *testing.T) {
c, rec := setupMockContextWebhook(t, map[string]string{}, github.PullRequestEvent{})
assert.NoError(t, handleProcessWebhook(c))
assert.Equal(t, http.StatusBadRequest, c.Response().Status)
assert.Equal(t, "missing X-GitHub-Event Header", rec.Body.String())
}
func TestHandleProcessWebhookUnhandledGitHubEvent(t *testing.T) {
c, rec := setupMockContextWebhook(t,
map[string]string{
"X-GitHub-Event": "unknownGitHubEventHeaderValue",
}, github.PullRequestEvent{})
assert.NoError(t, handleProcessWebhook(c))
assert.Equal(t, http.StatusBadRequest, c.Response().Status)
assert.Equal(t, msgUnhandledGitHubEventType, rec.Body.String())
}
// Deal with side effect if local machine has a .env file setup, so we clear the webhook secret for sanity's sake,
// env variable value should be restored in defer() call.
func clearEnvGHWebhookSecretMadness(t *testing.T) (origGHWebhookSecret string) {
origGHWebhookSecret = os.Getenv(envGhWebhookSecret)
resetEnvVariable(t, envGhWebhookSecret, "") // clear it
return origGHWebhookSecret
}
func TestHandleProcessWebhookGitHubEventPullRequestPayloadActionIgnored(t *testing.T) {
actionText := "someIgnoredAction"
c, rec := setupMockContextWebhook(t,
map[string]string{
"X-GitHub-Event": string(webhook.PullRequestEvent),
}, github.PullRequestEvent{Action: &actionText})
origGHAppIDEnvVar := os.Getenv(ourGithub.EnvGhAppId)
defer func() {
resetEnvVariable(t, ourGithub.EnvGhAppId, origGHAppIDEnvVar)
}()
assert.NoError(t, os.Setenv(ourGithub.EnvGhAppId, "-1"))
origGHWebhookSecret := clearEnvGHWebhookSecretMadness(t)
defer func() {
resetEnvVariable(t, envGhWebhookSecret, origGHWebhookSecret)
}()
assert.NoError(t, handleProcessWebhook(c))
assert.Equal(t, http.StatusAccepted, c.Response().Status)
assert.Equal(t, "No action taken for: someIgnoredAction", rec.Body.String())
}
func TestHandleProcessWebhookGitHubEventPullRequestOpenedBadGH_APP_ID(t *testing.T) {
actionText := "opened"
c, rec := setupMockContextWebhook(t,
map[string]string{
"X-GitHub-Event": string(webhook.PullRequestEvent),
}, github.PullRequestEvent{Action: &actionText})
origGHAppIDEnvVar := os.Getenv(ourGithub.EnvGhAppId)
defer func() {
resetEnvVariable(t, ourGithub.EnvGhAppId, origGHAppIDEnvVar)
}()
assert.NoError(t, os.Setenv(ourGithub.EnvGhAppId, "nonNumericGHAppID"))
origGHWebhookSecret := clearEnvGHWebhookSecretMadness(t)
defer func() {
resetEnvVariable(t, envGhWebhookSecret, origGHWebhookSecret)
}()
assert.NoError(t, handleProcessWebhook(c))
assert.Equal(t, http.StatusBadRequest, c.Response().Status)
assert.Equal(t, `strconv.ParseInt: parsing "nonNumericGHAppID": invalid syntax`, rec.Body.String())
}
func TestHandleProcessWebhookGitHubEventPullRequestOpenedMissingPemFile(t *testing.T) {
actionText := "opened"
c, rec := setupMockContextWebhook(t,
map[string]string{
"X-GitHub-Event": string(webhook.PullRequestEvent),
}, github.PullRequestEvent{Action: &actionText})
origGHAppIDEnvVar := os.Getenv(ourGithub.EnvGhAppId)
defer func() {
resetEnvVariable(t, ourGithub.EnvGhAppId, origGHAppIDEnvVar)
}()
assert.NoError(t, os.Setenv(ourGithub.EnvGhAppId, "-1"))
// move pem file if it exists
pemBackupFile := ourGithub.FilenameTheClaPem + "_orig"
errRename := os.Rename(ourGithub.FilenameTheClaPem, pemBackupFile)
defer func() {
if errRename == nil {
assert.NoError(t, os.Rename(pemBackupFile, ourGithub.FilenameTheClaPem), "error renaming pem file in test")
}
}()
origGHWebhookSecret := clearEnvGHWebhookSecretMadness(t)
defer func() {
resetEnvVariable(t, envGhWebhookSecret, origGHWebhookSecret)
}()
assert.NoError(t, handleProcessWebhook(c))
assert.Equal(t, http.StatusBadRequest, c.Response().Status)
assert.Equal(t, "could not read private key: open the-cla.pem: no such file or directory", rec.Body.String())
}
func TestHandleProcessWebhookGitHubEventPullRequestPayloadActionHandled(t *testing.T) {
verifyActionHandled(t, "opened")
verifyActionHandled(t, "reopened")
verifyActionHandled(t, "synchronize")
}
func verifyActionHandled(t *testing.T, actionText string) {
c, rec := setupMockContextWebhook(t,
map[string]string{
"X-GitHub-Event": string(webhook.PullRequestEvent),
}, github.PullRequestEvent{Action: &actionText})
mock, dbIF, closeDbFunc := db.SetupMockDB(t)
defer closeDbFunc()
postgresDB = dbIF
mock.ExpectQuery(db.ConvertSqlToDbMockExpect(db.SqlSelectUnsignedUsersForPR)).
WillReturnRows(sqlmock.NewRows([]string{"count"}).AddRow(1))
origGHAppIDEnvVar := os.Getenv(ourGithub.EnvGhAppId)
defer func() {
resetEnvVariable(t, ourGithub.EnvGhAppId, origGHAppIDEnvVar)
}()
assert.NoError(t, os.Setenv(ourGithub.EnvGhAppId, "-1"))
resetPemFileImpl := ourGithub.SetupTestPemFile(t)
defer resetPemFileImpl()
resetGHJWTImpl := ourGithub.SetupMockGHJWT()
defer resetGHJWTImpl()
origGithubImpl := ourGithub.GHImpl
defer func() {
ourGithub.GHImpl = origGithubImpl
}()
ourGithub.GHImpl = &ourGithub.GHInterfaceMock{
IssuesMock: ourGithub.IssuesMock{
MockGetLabelResponse: &github.Response{
Response: &http.Response{},
},
MockRemoveLabelResponse: &github.Response{
Response: &http.Response{},
},
},
}
origGHWebhookSecret := clearEnvGHWebhookSecretMadness(t)
defer func() {
resetEnvVariable(t, envGhWebhookSecret, origGHWebhookSecret)
}()
assert.NoError(t, handleProcessWebhook(c))
assert.Equal(t, http.StatusAccepted, c.Response().Status)
assert.Equal(t, "accepted pull request for processing", rec.Body.String())
}
func setupMockContextSignCla(t *testing.T, headers map[string]string, user types.UserSignature) (c echo.Context, rec *httptest.ResponseRecorder) {
logger = zaptest.NewLogger(t)
// Setup
e := echo.New()
reqBody, err := json.Marshal(user)
assert.NoError(t, err)
req := httptest.NewRequest(http.MethodPut, pathSignCla, strings.NewReader(string(reqBody)))
for k, v := range headers {
req.Header.Set(k, v)
}
rec = httptest.NewRecorder()
c = e.NewContext(req, rec)
return
}
func TestHandleProcessSignClaBindError(t *testing.T) {
c, rec := setupMockContextSignCla(t, map[string]string{}, types.UserSignature{})
assert.EqualError(t, handleProcessSignCla(c), "code=415, message=Unsupported Media Type")
assert.Equal(t, 0, c.Response().Status)
assert.Equal(t, "", rec.Body.String())
}
func setupMockContextSignature(t *testing.T, queryParams map[string]string) (c echo.Context, rec *httptest.ResponseRecorder) {
logger = zaptest.NewLogger(t)
// Setup
e := echo.New()
req := httptest.NewRequest(http.MethodGet, pathSignCla, nil)
q := req.URL.Query()
for k, v := range queryParams {
q.Add(k, v)
}
req.URL.RawQuery = q.Encode()
rec = httptest.NewRecorder()
c = e.NewContext(req, rec)
return
}
func TestHandleSignatureMissingLogin(t *testing.T) {
c, rec := setupMockContextSignature(t, map[string]string{})
assert.NoError(t, handleSignature(c))
assert.Equal(t, http.StatusUnprocessableEntity, c.Response().Status)
assert.Equal(t, fmt.Sprintf(msgTemplateMissingQueryParam, queryParameterLogin), rec.Body.String())
}
func TestHandleSignatureMissingCLAVersion(t *testing.T) {
c, rec := setupMockContextSignature(t, map[string]string{queryParameterLogin: "myLogin"})
assert.NoError(t, handleSignature(c))
assert.Equal(t, http.StatusUnprocessableEntity, c.Response().Status)
assert.Equal(t, fmt.Sprintf(msgTemplateMissingQueryParam, queryParameterCLAVersion), rec.Body.String())
}
func TestHandleSignatureHasAuthorSignedError(t *testing.T) {
c, rec := setupMockContextSignature(t, map[string]string{
queryParameterLogin: "myLogin",
queryParameterCLAVersion: "myCLAVersion",
})
mock, dbIF, closeDbFunc := db.SetupMockDB(t)
defer closeDbFunc()
postgresDB = dbIF
forcedError := fmt.Errorf("forced SQL query error")
mock.ExpectQuery(db.ConvertSqlToDbMockExpect(db.SqlSelectUserSignature)).
WillReturnError(forcedError)
assert.NoError(t, handleSignature(c))
assert.Equal(t, http.StatusInternalServerError, c.Response().Status)
assert.Equal(t, forcedError.Error(), rec.Body.String())
}
func TestHandleSignatureHasAuthorSignedFalse(t *testing.T) {
c, rec := setupMockContextSignature(t, map[string]string{
queryParameterLogin: "myLogin",
queryParameterCLAVersion: "myCLAVersion",
})
mock, dbIF, closeDbFunc := db.SetupMockDB(t)
defer closeDbFunc()
postgresDB = dbIF
mock.ExpectQuery(db.ConvertSqlToDbMockExpect(db.SqlSelectUserSignature)).
WillReturnRows(sqlmock.NewRows([]string{"LoginName", "Email", "GivenName", "SignedAt", "ClaVersion"}))
assert.NoError(t, handleSignature(c))
assert.Equal(t, http.StatusOK, c.Response().Status)
assert.Equal(t, "cla version myCLAVersion not signed by myLogin", rec.Body.String())
}
func TestHandleSignatureHasAuthorSignedAndHidesFields(t *testing.T) {
const testLogin = "myLogin"
const testCLAVersion = "myCLAVersion"
const testCLATextUrl = "https://my.url/text"
const testCLAText = "This is the CLA text"
c, rec := setupMockContextSignature(t, map[string]string{
queryParameterLogin: testLogin,
queryParameterCLAVersion: testCLAVersion,
})
mock, dbIF, closeDbFunc := db.SetupMockDB(t)
defer closeDbFunc()
postgresDB = dbIF
now := time.Now()
mock.ExpectQuery(db.ConvertSqlToDbMockExpect(db.SqlSelectUserSignature)).
WillReturnRows(sqlmock.NewRows([]string{"LoginName", "Email", "GivenName", "SignedAt", "ClaVersion", "ClaTextUrl", "ClaText"}).
AddRow(testLogin, "myEmail", "myGivenName", now, testCLAVersion, testCLATextUrl, testCLAText))
assert.NoError(t, handleSignature(c))
assert.Equal(t, http.StatusOK, c.Response().Status)
expectedJsonSignature, err := json.Marshal(types.UserSignature{
User: types.User{
Login: testLogin,
Email: hiddenFieldValue, // hide email
GivenName: hiddenFieldValue, // hide given name
},
CLAVersion: testCLAVersion,
TimeSigned: now,
CLATextUrl: testCLATextUrl,
CLAText: testCLAText,
})
assert.NoError(t, err)
assert.Equal(t, string(expectedJsonSignature)+"\n", rec.Body.String())
}
func saveEnvInfoCredentials(t *testing.T) (resetInfoCreds func()) {
origInfoUsername := os.Getenv(envInfoUsername)
origInfoPassword := os.Getenv(envInfoPassword)
resetInfoCreds = func() {
resetEnvVariable(t, envInfoUsername, origInfoUsername)
resetEnvVariable(t, envInfoUsername, origInfoPassword)
}
// setup testing logger while we're here
logger = zaptest.NewLogger(t)
return
}
func TestInfoBasicValidatorMissingEnv(t *testing.T) {
resetInfoCreds := saveEnvInfoCredentials(t)
defer resetInfoCreds()
assert.NoError(t, os.Unsetenv(envInfoUsername))
assert.NoError(t, os.Unsetenv(envInfoPassword))
isValid, err := infoBasicValidator("yadda", "bing", nil)
assert.NoError(t, err)
assert.False(t, isValid)
}
func TestInfoBasicValidatorInValid(t *testing.T) {
resetInfoCreds := saveEnvInfoCredentials(t)
defer resetInfoCreds()
assert.NoError(t, os.Setenv(envInfoUsername, "yadda"))
assert.NoError(t, os.Setenv(envInfoPassword, "Doh!"))
isValid, err := infoBasicValidator("yadda", "bing", nil)
assert.NoError(t, err)
assert.False(t, isValid)
}
func TestInfoBasicValidatorValid(t *testing.T) {
resetInfoCreds := saveEnvInfoCredentials(t)
defer resetInfoCreds()
assert.NoError(t, os.Setenv(envInfoUsername, "yadda"))
assert.NoError(t, os.Setenv(envInfoPassword, "bing"))
isValid, err := infoBasicValidator("yadda", "bing", nil)
assert.NoError(t, err)
assert.True(t, isValid)
}
func TestNotifySignatureCompleteFails(t *testing.T) {
setupMockContextCLA(t)
testSignature := new(types.UserSignature)
testSignature.User.Login = "LOGIN-ID"
testSignature.User.Email = "[email protected]"
testSignature.User.GivenName = "A Person"
testSignature.CLAVersion = "0.0.0"
testSignature.TimeSigned = time.Now()
testSignature.CLATextUrl = "https://a.url/cla.txt"
testSignature.CLAText = "Some text here"
err := notifySignatureComplete(testSignature)
assert.EqualError(t, err, "SMTP Host, SMTP Port or Notification Address are empty - cannot send notification")
}