forked from wish/eventmaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrafana_test.go
257 lines (230 loc) · 5.81 KB
/
grafana_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
package eventmaster
import (
"bytes"
"encoding/json"
"io"
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/pkg/errors"
)
func TestGrafanaAddDataSource(t *testing.T) {
store, err := GetTestEventStore(NewNoOpDataStore())
if err != nil {
t.Fatalf("creating event store: %v", err)
}
ts := httptest.NewServer(NewServer(store, "", ""))
resp, err := http.Get(ts.URL + "/grafana")
if err != nil {
t.Fatalf("GET: %v", err)
}
if got, want := resp.StatusCode, http.StatusOK; got != want {
t.Fatalf("bad status: got %v, want %v", got, want)
}
}
func TestGrafanaSearch(t *testing.T) {
mds := &mockDataStore{}
store, err := GetTestEventStore(mds)
if err != nil {
t.Fatalf("creating event store: %v", err)
}
ts := httptest.NewServer(NewServer(store, "", ""))
if _, err := grafSearch(ts.URL, "bad target"); err == nil {
t.Fatalf("should have not been able to successfully get a bad target but did")
}
for _, target := range []string{"dc", "topic"} {
dcs, err := grafSearch(ts.URL, target)
if err != nil {
t.Fatalf("search failure: %v", err)
}
if got, want := dcs[0], "all"; got != want {
t.Fatalf("first entry was not 'all'; got: %v, want %v", got, want)
}
if got, want := len(dcs), 1; got != want {
t.Fatalf("incorrect response lenght: got %v, want %v", got, want)
}
}
if err := PopulateTestData(store); err != nil {
t.Fatalf("populating test data: %v", err)
}
for _, target := range []string{"dc", "topic"} {
dcs, err := grafSearch(ts.URL, target)
if err != nil {
t.Fatalf("search failure: %v", err)
}
if got, want := dcs[0], "all"; got != want {
t.Fatalf("first entry was not 'all'; got: %v, want %v", got, want)
}
if got, want := len(dcs), 6; got != want {
t.Fatalf("incorrect response lenght: got %v, want %v", got, want)
}
}
}
func grafSearch(url, target string) ([]string, error) {
buf := &bytes.Buffer{}
tr := TemplateRequest{Target: target}
if err := json.NewEncoder(buf).Encode(&tr); err != nil {
return nil, errors.Wrap(err, "json encode")
}
resp, err := http.Post(url+"/grafana/search", "application/json", buf)
if err != nil {
return nil, errors.Wrap(err, "search post")
}
buf.Reset()
io.Copy(buf, resp.Body)
resp.Body.Close()
if got, want := resp.StatusCode, http.StatusOK; got != want {
return nil, errors.Errorf("bad status: got %v, want %v, %v", got, want, buf.String())
}
dcs := []string{}
if err := json.NewDecoder(buf).Decode(&dcs); err != nil {
return nil, errors.Wrap(err, "json decode")
}
return dcs, nil
}
func TestGrafanaAnnotations(t *testing.T) {
mds := &mockDataStore{}
store, err := GetTestEventStore(mds)
if err != nil {
t.Fatalf("creating event store: %v", err)
}
ts := httptest.NewServer(NewServer(store, "", ""))
if err := PopulateTestData(store); err != nil {
t.Fatalf("populating test data: %v", err)
}
topics, err := mds.GetTopics()
if err != nil {
t.Fatalf("get topics: %v", err)
}
dcs, err := mds.GetDCs()
if err != nil {
t.Fatalf("get dcs: %v", err)
}
n := time.Now()
host := "h0"
var i int64
for _, topic := range topics {
for _, dc := range dcs {
et := n.Unix() + i
e := &UnaddedEvent{
Host: host,
DC: dc.Name,
TopicName: topic.Name,
EventTime: et,
}
if _, err := store.AddEvent(e); err != nil {
t.Fatalf("adding event: %v", err)
}
i++
}
}
tests := []struct {
label string
ar AnnotationsReq
count int
}{
{
label: "all",
ar: AnnotationsReq{
Range: Range{
From: n.Add(-10 * time.Second),
// well outside the window:
To: n.Add(time.Duration(i) * time.Second),
},
},
count: 25,
},
{
label: "trim time to",
ar: AnnotationsReq{
Range: Range{
From: n.Add(-10 * time.Second),
To: n.Add(time.Duration(i/2) * time.Second),
},
},
count: 12,
},
{
label: "trim time from",
ar: AnnotationsReq{
Range: Range{
From: n.Add(time.Duration(i/2) * time.Second),
To: n.Add(time.Duration(i) * time.Second),
},
},
count: 12,
},
{
label: "one dc",
ar: AnnotationsReq{
Range: Range{
From: n.Add(-10 * time.Second),
To: n.Add(time.Duration(i) * time.Second),
},
Annotation: Annotation{
Query: `{"dc": "dc0000"}`,
},
},
count: 5,
},
{
label: "one topic",
ar: AnnotationsReq{
Range: Range{
From: n.Add(-10 * time.Second),
To: n.Add(time.Duration(i) * time.Second),
},
Annotation: Annotation{
Query: `{"topic": "t0000"}`,
},
},
count: 5,
},
{
label: "one dc and topic",
ar: AnnotationsReq{
Range: Range{
From: n.Add(-10 * time.Second),
To: n.Add(time.Duration(i) * time.Second),
},
Annotation: Annotation{
Query: `{"topic": "t0000", "dc": "dc0000"}`,
},
},
count: 1,
},
}
for _, test := range tests {
t.Run(test.label, func(t *testing.T) {
anns, err := grafAnnotations(ts.URL, test.ar)
if err != nil {
t.Fatalf("getting annotations for %v: %v", test.ar, err)
}
if got, want := len(anns), test.count; got != want {
t.Fatalf("unexpected quantity of annotations: got %d, want %d", got, want)
}
})
}
}
func grafAnnotations(url string, req AnnotationsReq) ([]AnnotationResponse, error) {
buf := &bytes.Buffer{}
if err := json.NewEncoder(buf).Encode(&req); err != nil {
return nil, errors.Wrap(err, "json encode")
}
resp, err := http.Post(url+"/grafana/annotations", "application/json", buf)
if err != nil {
return nil, errors.Wrap(err, "annotations post")
}
buf.Reset()
io.Copy(buf, resp.Body)
resp.Body.Close()
if got, want := resp.StatusCode, http.StatusOK; got != want {
return nil, errors.Errorf("bad status: got %v, want %v, %v", got, want, buf.String())
}
ar := []AnnotationResponse{}
if err := json.NewDecoder(buf).Decode(&ar); err != nil {
return nil, errors.Wrap(err, "json decode")
}
return ar, nil
}