forked from spaceapegames/go-wavefront
-
Notifications
You must be signed in to change notification settings - Fork 12
/
alert_test.go
159 lines (137 loc) · 3.89 KB
/
alert_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
package wavefront
import (
"io"
"net/http"
"net/url"
"testing"
asserts "github.com/stretchr/testify/assert"
)
type MockAlertClient struct {
Client
InvokedCount int
T *testing.T
}
type MockCrudAlertClient struct {
Client
method string
T *testing.T
}
func (m *MockAlertClient) Do(req *http.Request) (io.ReadCloser, error) {
return testPaginatedDo(m.T, req, "./fixtures/paginated-alert-%d.json", &m.InvokedCount)
}
func TestAlerts_PaginatedFind(t *testing.T) {
assert := asserts.New(t)
baseurl, _ := url.Parse("http://testing.wavefront.com")
a := &Alerts{
client: &MockAlertClient{
Client: Client{
Config: &Config{Token: "1234-5678-9977"},
BaseURL: baseurl,
httpClient: http.DefaultClient,
debug: true,
},
T: t,
},
}
alerts, err := a.Find(nil)
if err != nil {
t.Fatal(err)
}
invoked := ((a.client).(*MockAlertClient)).InvokedCount
assert.Equal(2, invoked)
assert.Equal("Excessive consumption of inodes", alerts[0].Name)
assert.Len(alerts[0].Tags, 2)
}
func (m *MockCrudAlertClient) Do(req *http.Request) (io.ReadCloser, error) {
return testDo(m.T, req, "./fixtures/create-alert-response.json", m.method, &Alert{})
}
func TestAlerts_CRUDAlert(t *testing.T) {
assert := asserts.New(t)
baseurl, _ := url.Parse("http://testing.wavefront.com")
a := &Alerts{
client: &MockCrudAlertClient{
Client: Client{
Config: &Config{Token: "1234-5678-9977"},
BaseURL: baseurl,
httpClient: http.DefaultClient,
debug: true,
},
method: "PUT",
T: t,
},
}
alert := Alert{
Name: "test alert",
Target: "test@example.com",
Condition: "ts(servers.cpu.usage) > 10 * 10",
DisplayExpression: "ts(servers.cpu.usage)",
Minutes: 2,
ResolveAfterMinutes: 2,
Severity: "WARN",
AdditionalInfo: "please resolve this alert",
Tags: []string{"mytag1", "mytag2"},
}
var readAlert Alert
alertId := "1234"
// Update should fail because no ID is set
assert.Error(a.Update(&alert))
a.client.(*MockCrudAlertClient).method = "POST"
assert.NoError(a.Create(&alert))
assert.Equal(alertId, *alert.ID)
a.client.(*MockCrudAlertClient).method = "GET"
readAlert.ID = &alertId
assert.NoError(a.Get(&readAlert))
a.client.(*MockCrudAlertClient).method = "PUT"
assert.NoError(a.Update(&alert))
a.client.(*MockCrudAlertClient).method = "DELETE"
assert.NoError(a.Delete(&alert, true))
assert.Nil(alert.ID)
}
func TestMultiThresholdAlerts_CreateUpdateDeleteAlert(t *testing.T) {
assert := asserts.New(t)
baseurl, _ := url.Parse("http://testing.wavefront.com")
a := &Alerts{
client: &MockCrudAlertClient{
Client: Client{
Config: &Config{Token: "1234-5678-9977"},
BaseURL: baseurl,
httpClient: http.DefaultClient,
debug: true,
},
method: "PUT",
T: t,
},
}
alert := Alert{
Name: "test alert",
Targets: map[string]string{
"smoke": "test@example.com",
"warn": "test2@example.com",
},
Conditions: map[string]string{
"smoke": "ts(servers.cpu.usage) > 5 * 10",
"warn": "ts(servers.cpu.usage) > 10 * 10",
},
DisplayExpression: "ts(servers.cpu.usage)",
Minutes: 2,
ResolveAfterMinutes: 2,
SeverityList: []string{"SMOKE", "WARN"},
AdditionalInfo: "please resolve this alert",
Tags: []string{"mytag1", "mytag2"},
}
var readAlert Alert
alertId := "1234"
// Update should fail because no ID is set
assert.Error(a.Update(&alert))
a.client.(*MockCrudAlertClient).method = "POST"
assert.NoError(a.Create(&alert))
assert.Equal(alertId, *alert.ID)
a.client.(*MockCrudAlertClient).method = "GET"
readAlert.ID = &alertId
assert.NoError(a.Get(&readAlert))
a.client.(*MockCrudAlertClient).method = "PUT"
assert.NoError(a.Update(&alert))
a.client.(*MockCrudAlertClient).method = "DELETE"
assert.NoError(a.Delete(&alert, true))
assert.Nil(alert.ID)
}