This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 97
/
alerting_alert_rule_test.go
301 lines (262 loc) · 7.92 KB
/
alerting_alert_rule_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
package gapi
import (
"encoding/json"
"strings"
"testing"
"time"
"github.com/gobs/pretty"
)
func TestAlertRules(t *testing.T) {
mockData := strings.Repeat(getAlertRulesJSON+",", 1000) // make 1000 alertRules.
mockData = "[" + mockData[:len(mockData)-1] + "]" // remove trailing comma; make a json list.
// This creates 1000 + 1000 + 1 (2001, 3 calls) worth of alertRules.
client := gapiTestToolsFromCalls(t, []mockServerCall{
{200, mockData},
{200, mockData},
{200, "[" + getAlertRulesJSON + "]"},
})
const dashCount = 2001
alertRules, err := client.AlertRules()
if err != nil {
t.Fatal(err)
}
t.Log(pretty.PrettyFormat(alertRules))
if len(alertRules) != dashCount {
t.Errorf("Length of returned folders should be %d", dashCount)
}
if alertRules[0].UID != "123abcd" || alertRules[0].Title != "Always in alarm" {
t.Error("Not correctly parsing returned alertRules.")
}
if alertRules[dashCount-1].UID != "123abcd" || alertRules[dashCount-1].Title != "Always in alarm" {
t.Error("Not correctly parsing returned alertRules.")
}
}
func TestAlertRule(t *testing.T) {
t.Run("get alert rule succeeds", func(t *testing.T) {
client := gapiTestTools(t, 200, getAlertRuleJSON)
alertRule, err := client.AlertRule("123abcd")
if err != nil {
t.Error(err)
}
if alertRule.UID != "123abcd" {
t.Errorf("incorrect UID - expected %s got %s", "123abcd", alertRule.UID)
}
})
t.Run("get alert rule group succeeds", func(t *testing.T) {
client := gapiTestTools(t, 200, getAlertRuleGroupJSON)
group, err := client.AlertRuleGroup("project_test", "eval_group_1")
if err != nil {
t.Error(err)
}
t.Log(pretty.PrettyFormat(group))
if group.Title != "eval_group_1" {
t.Errorf("incorrect title - expected %s got %s", "eval_group_1", group.Title)
}
if group.FolderUID != "project_test" {
t.Errorf("incorrect folderUID - expected %s got %s", "project_test", group.FolderUID)
}
if len(group.Rules) != 1 {
t.Errorf("wrong number of rules, got %d", len(group.Rules))
}
})
t.Run("get non-existent alert rule fails", func(t *testing.T) {
client := gapiTestTools(t, 404, "")
alertRule, err := client.AlertRule("does not exist")
if err == nil {
t.Errorf("expected error but got nil")
t.Log(pretty.PrettyFormat(alertRule))
}
})
t.Run("get non-existent rule group fails", func(t *testing.T) {
client := gapiTestTools(t, 404, "")
group, err := client.AlertRuleGroup("d8-gk06nz", "does not exist")
if err == nil {
t.Errorf("expected error but got nil")
t.Log(pretty.PrettyFormat(group))
}
})
t.Run("create alert rule succeeds", func(t *testing.T) {
client := gapiTestTools(t, 201, writeAlertRuleJSON)
alertRule := createAlertRule()
uid, err := client.NewAlertRule(&alertRule)
if err != nil {
t.Error(err)
}
if uid != "123abcd" {
t.Errorf("unexpected UID returned, got %s", uid)
}
})
t.Run("set alert rule group succeeds", func(t *testing.T) {
client := gapiTestTools(t, 200, getAlertRuleGroupJSON)
group := createAlertRuleGroup()
err := client.SetAlertRuleGroup(group)
if err != nil {
t.Error(err)
}
})
t.Run("update alert rule succeeds", func(t *testing.T) {
client := gapiTestTools(t, 200, writeAlertRuleJSON)
alertRule := createAlertRule()
alertRule.UID = "foobar"
err := client.UpdateAlertRule(&alertRule)
if err != nil {
t.Error(err)
}
})
t.Run("delete alert rule succeeds", func(t *testing.T) {
client := gapiTestTools(t, 204, "")
err := client.DeleteAlertRule("123abcd")
if err != nil {
t.Error(err)
}
})
}
func createAlertRuleGroup() RuleGroup {
return RuleGroup{
Title: "eval_group_1",
FolderUID: "project_test",
Interval: 120,
Rules: []AlertRule{createAlertRule()},
}
}
func createAlertRule() AlertRule {
return AlertRule{
Condition: "A",
Data: createAlertQueries(),
ExecErrState: ErrOK,
FolderUID: "project_test",
NoDataState: NoDataOk,
OrgID: 1,
RuleGroup: "eval_group_1",
Title: "Always in alarm",
ForDuration: 60 * time.Second,
}
}
func createAlertQueries() []*AlertQuery {
alertQueries := make([]*AlertQuery, 1)
alertQueries[0] = &AlertQuery{
DatasourceUID: "-100",
Model: json.RawMessage(`{"datasourceUid":"-100","model":{"conditions":[{"evaluator":{"params":[0,0],"type":"gt"},"operator":{"type":"and"},"query":{"params":[]},"reducer":{"params":[],"type":"avg"},"type":"query"}],"datasource":{"type":"__expr__","uid":"__expr__"},"expression":"1 == 1","hide":false,"intervalMs":1000,"maxDataPoints":43200,"refId":"A","type":"math"},"queryType":"","refId":"A","relativeTimeRange":{"from":0,"to":0}}`),
QueryType: "",
RefID: "A",
RelativeTimeRange: RelativeTimeRange{From: 0, To: 0},
}
return alertQueries
}
const writeAlertRuleJSON = `
{
"conditions": "A",
"data": [{"datasourceUid":"-100","model":{"conditions":[{"evaluator":{"params":[0,0],"type":"gt"},"operator":{"type":"and"},"query":{"params":[]},"reducer":{"params":[],"type":"avg"},"type":"query"}],"datasource":{"type":"__expr__","uid":"__expr__"},"expression":"1 == 1","hide":false,"intervalMs":1000,"maxDataPoints":43200,"refId":"A","type":"math"},"queryType":"","refId":"A","relativeTimeRange":{"from":0,"to":0}}],
"uid": "123abcd",
"execErrState": "OK",
"folderUID": "project_test",
"noDataState": "OK",
"orgId": 1,
"ruleGroup": "eval_group_1",
"title": "Always in alarm",
"for": "1m"
}
`
const getAlertRulesJSON = `{
"conditions": "A",
"data": [{"datasourceUid":"-100","model":{"conditions":[{"evaluator":{"params":[0,0],"type":"gt"},"operator":{"type":"and"},"query":{"params":[]},"reducer":{"params":[],"type":"avg"},"type":"query"}],"datasource":{"type":"__expr__","uid":"__expr__"},"expression":"1 == 1","hide":false,"intervalMs":1000,"maxDataPoints":43200,"refId":"A","type":"math"},"queryType":"","refId":"A","relativeTimeRange":{"from":0,"to":0}}],
"execErrState": "OK",
"folderUID": "project_test",
"noDataState": "OK",
"orgId": 1,
"uid": "123abcd",
"ruleGroup": "eval_group_1",
"title": "Always in alarm",
"for": "1m"
}`
const getAlertRuleJSON = `
{
"conditions": "A",
"data": [{"datasourceUid":"-100","model":{"conditions":[{"evaluator":{"params":[0,0],"type":"gt"},"operator":{"type":"and"},"query":{"params":[]},"reducer":{"params":[],"type":"avg"},"type":"query"}],"datasource":{"type":"__expr__","uid":"__expr__"},"expression":"1 == 1","hide":false,"intervalMs":1000,"maxDataPoints":43200,"refId":"A","type":"math"},"queryType":"","refId":"A","relativeTimeRange":{"from":0,"to":0}}],
"execErrState": "OK",
"folderUID": "project_test",
"noDataState": "OK",
"orgId": 1,
"uid": "123abcd",
"ruleGroup": "eval_group_1",
"title": "Always in alarm",
"for": "1m"
}
`
const getAlertRuleGroupJSON = `
{
"title": "eval_group_1",
"folderUid": "project_test",
"interval": 60,
"rules": [
{
"id": 212,
"uid": "HW7RYci4z",
"orgID": 1,
"folderUID": "project_test",
"ruleGroup": "eval_group_1",
"title": "Always in alarm",
"condition": "A",
"data": [
{
"refId": "A",
"queryType": "",
"relativeTimeRange": {
"from": 0,
"to": 0
},
"datasourceUid": "-100",
"model": {
"datasourceUid": "-100",
"intervalMs": 1000,
"maxDataPoints": 43200,
"model": {
"conditions": [
{
"evaluator": {
"params": [
0,
0
],
"type": "gt"
},
"operator": {
"type": "and"
},
"query": {
"params": []
},
"reducer": {
"params": [],
"type": "avg"
},
"type": "query"
}
],
"datasource": {
"type": "__expr__",
"uid": "__expr__"
},
"expression": "1 == 1",
"hide": false,
"intervalMs": 1000,
"maxDataPoints": 43200,
"refId": "A",
"type": "math"
},
"queryType": "",
"refId": "A",
"relativeTimeRange": {
"from": 0,
"to": 0
}
}
}
],
"updated": "2022-08-12T15:44:43-05:00",
"noDataState": "OK",
"execErrState": "OK",
"for": "2m"
}
]
}`