forked from nikoksr/notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathms_teams_test.go
87 lines (77 loc) · 2.2 KB
/
ms_teams_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
package msteams
import (
"context"
"errors"
"testing"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
)
func TestMSTeams_Send(t *testing.T) {
t.Parallel()
tests := []struct {
name string
webHooks []string
subject string
message string
mockSetup func(*mockteamsClient)
expectedError string
}{
{
name: "Successful send to single webhook",
webHooks: []string{"https://webhook1.example.com"},
subject: "Test Subject",
message: "Test Message",
mockSetup: func(m *mockteamsClient) {
m.On("SendWithContext", mock.Anything,
"https://webhook1.example.com", mock.AnythingOfType("*adaptivecard.Message")).
Return(nil)
},
expectedError: "",
},
{
name: "Successful send to multiple webhooks",
webHooks: []string{"https://webhook1.example.com", "https://webhook2.example.com"},
subject: "Test Subject",
message: "Test Message",
mockSetup: func(m *mockteamsClient) {
m.On("SendWithContext", mock.Anything,
"https://webhook1.example.com", mock.AnythingOfType("*adaptivecard.Message")).
Return(nil)
m.On("SendWithContext", mock.Anything,
"https://webhook2.example.com", mock.AnythingOfType("*adaptivecard.Message")).
Return(nil)
},
expectedError: "",
},
{
name: "Teams client error",
webHooks: []string{"https://webhook1.example.com"},
subject: "Test Subject",
message: "Test Message",
mockSetup: func(m *mockteamsClient) {
m.On("SendWithContext", mock.Anything,
"https://webhook1.example.com", mock.AnythingOfType("*adaptivecard.Message")).
Return(errors.New("Teams error"))
},
expectedError: "send message to channel \"https://webhook1.example.com\": Teams error",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
mockClient := new(mockteamsClient)
tt.mockSetup(mockClient)
m := &MSTeams{
client: mockClient,
webHooks: tt.webHooks,
}
err := m.Send(context.Background(), tt.subject, tt.message)
if tt.expectedError != "" {
require.EqualError(t, err, tt.expectedError)
} else {
require.NoError(t, err)
}
mockClient.AssertExpectations(t)
})
}
}