forked from mattermost/mattermost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpirynotify_test.go
81 lines (65 loc) · 2.32 KB
/
expirynotify_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
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package app
import (
"net/http"
"net/http/httptest"
"testing"
"github.com/stretchr/testify/require"
"github.com/mattermost/mattermost-server/v5/model"
)
func TestNotifySessionsExpired(t *testing.T) {
th := Setup(t).InitBasic()
defer th.TearDown()
handler := &testPushNotificationHandler{t: t}
pushServer := httptest.NewServer(
http.HandlerFunc(handler.handleReq),
)
defer pushServer.Close()
th.App.UpdateConfig(func(cfg *model.Config) {
*cfg.EmailSettings.PushNotificationServer = pushServer.URL
})
t.Run("push notifications disabled", func(t *testing.T) {
th.App.UpdateConfig(func(cfg *model.Config) {
*cfg.EmailSettings.SendPushNotifications = false
})
err := th.App.NotifySessionsExpired()
// no error, but also no requests sent
require.Nil(t, err)
require.Equal(t, 0, handler.numReqs())
})
t.Run("two sessions expired", func(t *testing.T) {
th.App.UpdateConfig(func(cfg *model.Config) {
*cfg.EmailSettings.SendPushNotifications = true
})
data := []struct {
deviceID string
expiresAt int64
notified bool
}{
{deviceID: "android:11111", expiresAt: model.GetMillis() + 100000, notified: false},
{deviceID: "android:22222", expiresAt: model.GetMillis() - 1000, notified: false},
{deviceID: "android:33333", expiresAt: model.GetMillis() - 2000, notified: false},
{deviceID: "android:44444", expiresAt: model.GetMillis() - 3000, notified: true},
}
for _, d := range data {
_, err := th.App.CreateSession(&model.Session{
UserId: th.BasicUser.Id,
DeviceId: d.deviceID,
ExpiresAt: d.expiresAt,
ExpiredNotify: d.notified,
})
require.Nil(t, err)
}
err := th.App.NotifySessionsExpired()
require.Nil(t, err)
require.Equal(t, 2, handler.numReqs())
expected := []string{"22222", "33333"}
require.Equal(t, model.PUSH_TYPE_SESSION, handler.notifications()[0].Type)
require.Contains(t, expected, handler.notifications()[0].DeviceId)
require.Contains(t, handler.notifications()[0].Message, "Session Expired")
require.Equal(t, model.PUSH_TYPE_SESSION, handler.notifications()[1].Type)
require.Contains(t, expected, handler.notifications()[1].DeviceId)
require.Contains(t, handler.notifications()[1].Message, "Session Expired")
})
}