-
Notifications
You must be signed in to change notification settings - Fork 6
/
notify_test.go
114 lines (112 loc) · 2.3 KB
/
notify_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
package notify
import (
"os"
"testing"
)
func TestNotify_Send(t *testing.T) {
type fields struct {
config *Config
}
type args struct {
msg string
}
tests := []struct {
name string
fields fields
args args
}{
{
"test pushover notify",
fields{config: &Config{
Platform: Platform("pushover"),
Token: os.Getenv("PUSHOVER_TOKEN"),
Channel: os.Getenv("PUSHOVER_CHANNEL"),
}},
args{msg: "test case"},
},
{
"test slack notify",
fields{config: &Config{
Platform: Platform("slack"),
Token: os.Getenv("SLACK_TOKEN"),
Channel: os.Getenv("SLACK_CHANNEL"),
}},
args{msg: "test case"},
},
{
"test pagerduty severity is null",
fields{config: &Config{
Platform: Platform("pagerduty"),
Token: os.Getenv("PAGERDUTY_TOKEN"),
Source: "api-test",
Severity: "",
}},
args{msg: "test pagerduty"},
},
{
"test pagerduty severity is error",
fields{config: &Config{
Platform: Platform("pagerduty"),
Token: os.Getenv("PAGERDUTY_TOKEN"),
Source: "api-test",
Severity: "error",
}},
args{msg: "test pagerduty is error"},
},
{
"test discord notify",
fields{
config: &Config{
Platform: PlatformDiscord,
Token: os.Getenv("DISCORD_TOKEN"),
Channel: os.Getenv("DISCORD_CHANNEL"),
},
},
args{msg: "test case"},
},
{
name: "test telegram notify",
fields: fields{
config: &Config{
Platform: PlatformTelegram,
Token: os.Getenv("TELEGRAM_TOKEN"),
Channel: os.Getenv("TELEGRAM_CHANNEL"),
},
},
args: args{
msg: "test case",
},
},
{
"test dingtalk notify",
fields{config: &Config{
Platform: PlatformDingTalk,
Token: os.Getenv("DingTalk_TOKEN"),
Channel: os.Getenv("DingTalk_CHANNEL"),
}},
args{msg: "test case"},
},
{
"test email notify",
fields{config: &Config{
Platform: PlatformEmail,
Token: os.Getenv("Email_Token"),
User: os.Getenv("Email_User"),
Password: os.Getenv("Email_Password"),
Host: os.Getenv("Email_Host"),
}},
args{msg: "test case"},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
n := &Notify{
config: tt.fields.config,
}
err := n.Send(tt.args.msg)
if err != nil {
t.Errorf(err.Error())
}
})
}
}