-
Notifications
You must be signed in to change notification settings - Fork 16
/
main_test.go
312 lines (276 loc) · 7.98 KB
/
main_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
302
303
304
305
306
307
308
309
310
311
312
package main
import (
"io"
"net/http"
"net/http/httptest"
"testing"
corev2 "github.com/sensu/sensu-go/api/core/v2"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func clearConfig() {
config.Addr = ""
config.Token = ""
}
func TestStatusMetrics(t *testing.T) {
clearConfig()
assert := assert.New(t)
event := corev2.FixtureEvent("entity1", "check1")
event.Metrics = nil
var apiStub = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
body, _ := io.ReadAll(r.Body)
expectedBody := `check1,sensu_entity_name=entity1 status=0`
assert.Contains(string(body), expectedBody)
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(`{"ok": true}`))
require.NoError(t, err)
}))
config.Addr = apiStub.URL
config.CheckStatusMetric = true
err := sendMetrics(event)
assert.NoError(err)
}
func TestSendMetrics(t *testing.T) {
clearConfig()
assert := assert.New(t)
event := corev2.FixtureEvent("entity1", "check1")
event.Check = nil
event.Metrics = corev2.FixtureMetrics()
var apiStub = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
body, _ := io.ReadAll(r.Body)
expectedBody := `answer,foo=bar,sensu_entity_name=entity1 value=42`
assert.Contains(string(body), expectedBody)
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(`{"ok": true}`))
require.NoError(t, err)
}))
config.Addr = apiStub.URL
err := sendMetrics(event)
assert.NoError(err)
}
func TestSendMetricsWithToken(t *testing.T) {
clearConfig()
assert := assert.New(t)
event := corev2.FixtureEvent("entity1", "check1")
event.Check = nil
event.Metrics = corev2.FixtureMetrics()
var apiStub = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
body, _ := io.ReadAll(r.Body)
header := r.Header
assert.Contains(header["Authorization"][0], config.Token)
expectedBody := `answer,foo=bar,sensu_entity_name=entity1 value=42`
assert.Contains(string(body), expectedBody)
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(`{"ok": true}`))
require.NoError(t, err)
}))
config.Addr = apiStub.URL
config.Token = "test_token"
err := sendMetrics(event)
assert.NoError(err)
}
func TestSendMetricsHostStripping(t *testing.T) {
var hostStrippingDataSet = []struct {
entityName string
expectedBody string
metricName string
stripHost bool
}{
{
entityName: "sensu.company.com",
metricName: "sensu.company.com",
expectedBody: `answer,foo=bar,sensu_entity_name=sensu.company.com value=42`,
stripHost: true,
},
{
entityName: "answer.company.com",
metricName: "answer.company.com",
expectedBody: `answer,foo=bar,sensu_entity_name=answer.company.com value=42`,
stripHost: true,
},
{
entityName: "prod-eu-db01.company.com",
metricName: "prod-eu-db01.company.com",
expectedBody: `answer,foo=bar,sensu_entity_name=prod-eu-db01.company.com value=42`,
stripHost: true,
},
{
entityName: "",
metricName: "",
expectedBody: `answer,foo=bar value=42`,
stripHost: true,
},
{
entityName: "metric01",
metricName: "",
expectedBody: `foo=bar,sensu_entity_name=metric01 answer=42`,
stripHost: true,
},
{
entityName: "prod-eu-db01.company.com",
metricName: "different.company.com",
expectedBody: `different,foo=bar,sensu_entity_name=prod-eu-db01.company.com company.com.answer=42`,
stripHost: true,
},
{
entityName: "no-stripping.company.com",
metricName: "no-stripping.company.com",
expectedBody: `no-stripping,foo=bar,sensu_entity_name=no-stripping.company.com company.com.answer=42`,
stripHost: false,
},
{
entityName: "company.com",
metricName: "company.com",
expectedBody: `company,foo=bar,sensu_entity_name=company.com com.answer=42`,
stripHost: false,
},
}
for _, tt := range hostStrippingDataSet {
clearConfig()
assert := assert.New(t)
event := corev2.FixtureEvent(tt.entityName, "check1")
event.Check = nil
event.Metrics = corev2.FixtureMetrics()
event.Metrics.Points[0].Name = tt.metricName + ".answer"
var apiStub = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
body, _ := io.ReadAll(r.Body)
assert.Contains(string(body), tt.expectedBody)
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(`{"ok": true}`))
require.NoError(t, err)
}))
config.Addr = apiStub.URL
config.StripHost = tt.stripHost
err := sendMetrics(event)
assert.NoError(err)
}
}
func TestSendAnnotation(t *testing.T) {
clearConfig()
assert := assert.New(t)
event := corev2.FixtureEvent("entity1", "check1")
event.Check.Status = 1
event.Check.Occurrences = 1
event.Check.Output = "FAILURE"
event.Metrics = corev2.FixtureMetrics()
var apiStub = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
body, _ := io.ReadAll(r.Body)
expectedBody := `sensu_event,check=check1,entity=entity1 description="\"ALERT - entity1/check1 : FAILURE\"",occurrences=1i,status=1i,title="\"Sensu Event\""`
assert.Contains(string(body), expectedBody)
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(`{"ok": true}`))
require.NoError(t, err)
}))
config.Addr = apiStub.URL
err := sendMetrics(event)
assert.NoError(err)
}
func TestEventNeedsAnnotation(t *testing.T) {
clearConfig()
assert := assert.New(t)
event := corev2.FixtureEvent("entity1", "check1")
b := eventNeedsAnnotation(event)
assert.True(b)
event.Check.Occurrences = 2
b = eventNeedsAnnotation(event)
assert.False(b)
event.Check.Status = 1
b = eventNeedsAnnotation(event)
assert.True(b)
event.Check = nil
b = eventNeedsAnnotation(event)
assert.False(b)
}
func TestSetName(t *testing.T) {
var namesDataSet = []struct {
test string
pointName string
expectedName string
legacy bool
}{
{
test: "legacy",
pointName: "ram.total.memory",
expectedName: "ram.total.memory",
legacy: true,
},
{
test: "nonLegacy",
pointName: "ram.total.memory",
expectedName: "ram",
legacy: false,
},
{
test: "nonLegacy2",
pointName: "ram_total_memory",
expectedName: "ram_total_memory",
legacy: false,
},
}
for _, nd := range namesDataSet {
clearConfig()
t.Run(nd.test, func(tt *testing.T) {
config.Legacy = nd.legacy
assert := assert.New(tt)
n := setName(nd.pointName)
assert.Equal(nd.expectedName, n)
})
}
}
func TestSetTags(t *testing.T) {
mt := corev2.MetricTag{Name: "tag1", Value: "value1"}
mti := corev2.MetricTag{Name: "tag2", Value: "prod"}
var tagsDataSet = []struct {
test string
entityName string
tags []*corev2.MetricTag
expectTags map[string]string
legacy bool
}{
{
test: "legacy",
entityName: "entity.com",
tags: make([]*corev2.MetricTag, 0),
expectTags: map[string]string{"host": "entity.com"},
legacy: true,
}, {
test: "noLegacy",
entityName: "entity.com",
tags: make([]*corev2.MetricTag, 0),
expectTags: map[string]string{"sensu_entity_name": "entity.com"},
legacy: false,
},
{
test: "noLegacy_tags",
entityName: "entity.com",
tags: []*corev2.MetricTag{&mt, &mti},
expectTags: map[string]string{"sensu_entity_name": "entity.com", "tag2": "prod", "tag1": "value1"},
legacy: false,
},
}
for _, td := range tagsDataSet {
clearConfig()
t.Run(td.test, func(tt *testing.T) {
config.Legacy = td.legacy
assert := assert.New(tt)
tags := setTags(td.entityName, td.tags)
assert.Equal(td.expectTags, tags)
})
}
}
func TestCheckArgCompatV1(t *testing.T) {
clearConfig()
assert := assert.New(t)
event := corev2.FixtureEvent("entity1", "check1")
err := checkArgs(event)
assert.Error(err)
config.Precision = "ns"
config.Addr = "http://example.com"
config.Password = "password"
config.Username = "user"
config.DbName = "test-database"
err = checkArgs(event)
assert.NoError(err)
assert.Equal("user:password", config.Token)
assert.Equal("test-database", config.Bucket)
}