-
Notifications
You must be signed in to change notification settings - Fork 5
/
check_bundle_metrics_test.go
182 lines (168 loc) · 4.23 KB
/
check_bundle_metrics_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
// Copyright 2016 Circonus, Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package apiclient
import (
"encoding/json"
"fmt"
"io"
"net/http"
"net/http/httptest"
"reflect"
"testing"
)
var (
testCheckBundleMetrics = CheckBundleMetrics{
CID: "/check_bundle_metrics/1234",
Metrics: []CheckBundleMetric{
{Name: "foo", Type: "numeric", Status: "active"},
{Name: "bar", Type: "histogram", Status: "active"},
{Name: "baz", Type: "text", Status: "available"},
{Name: "fum", Type: "composite", Status: "active", Tags: []string{"cat:tag"}},
{Name: "zot", Type: "caql", Status: "active", Units: &[]string{"milliseconds"}[0]},
},
}
)
func testCheckBundleMetricsServer() *httptest.Server {
f := func(w http.ResponseWriter, r *http.Request) {
path := r.URL.Path
if path == "/check_bundle_metrics/1234" {
switch r.Method {
case "GET":
ret, err := json.Marshal(testCheckBundleMetrics)
if err != nil {
panic(err)
}
w.WriteHeader(200)
w.Header().Set("Content-Type", "application/json")
fmt.Fprintln(w, string(ret))
case "PUT":
defer r.Body.Close()
b, err := io.ReadAll(r.Body)
if err != nil {
panic(err)
}
w.WriteHeader(200)
w.Header().Set("Content-Type", "application/json")
fmt.Fprintln(w, string(b))
default:
w.WriteHeader(404)
fmt.Fprintf(w, "not found: %s %s\n", r.Method, path)
}
} else {
w.WriteHeader(404)
fmt.Fprintf(w, "not found: %s %s\n", r.Method, path)
}
}
return httptest.NewServer(http.HandlerFunc(f))
}
func checkBundleMetricsTestBootstrap(t *testing.T) (*API, *httptest.Server) {
server := testCheckBundleMetricsServer()
ac := &Config{
TokenKey: "abc123",
TokenApp: "test",
URL: server.URL,
}
apih, err := NewAPI(ac)
if err != nil {
t.Fatalf("unexpected error (%s)", err)
server.Close()
return nil, nil
}
return apih, server
}
func TestFetchCheckBundleMetrics(t *testing.T) {
apih, server := checkBundleMetricsTestBootstrap(t)
defer server.Close()
tests := []struct {
id string
cid string
expectedType string
expectedErr string
shouldFail bool
}{
{
id: "empty cid",
cid: "",
expectedType: "",
shouldFail: true,
expectedErr: "invalid check bundle metrics CID (none)",
},
{
id: "short cid",
cid: "1234",
expectedType: "*apiclient.CheckBundleMetrics",
shouldFail: false,
},
{
id: "long cid",
cid: "/check_bundle_metrics/1234",
expectedType: "*apiclient.CheckBundleMetrics",
shouldFail: false,
},
}
for _, test := range tests {
test := test
t.Run(test.id, func(t *testing.T) {
alert, err := apih.FetchCheckBundleMetrics(CIDType(&test.cid))
if test.shouldFail {
if err == nil {
t.Fatal("expected error")
} else if err.Error() != test.expectedErr {
t.Fatalf("unexpected error (%s)", err)
}
} else {
if err != nil {
t.Fatalf("unexpected error (%s)", err)
} else if reflect.TypeOf(alert).String() != test.expectedType {
t.Fatalf("unexpected type (%s)", reflect.TypeOf(alert).String())
}
}
})
}
}
func TestUpdateCheckBundleMetrics(t *testing.T) {
apih, server := checkBundleMetricsTestBootstrap(t)
defer server.Close()
tests := []struct {
cfg *CheckBundleMetrics
id string
expectedErr string
shouldFail bool
}{
{
id: "invalid (nil)",
cfg: nil,
shouldFail: true,
expectedErr: "invalid check bundle metrics config (nil)",
},
{
id: "invalid (cid)",
cfg: &CheckBundleMetrics{CID: "/invalid"},
shouldFail: true,
expectedErr: "invalid check bundle metrics CID (/invalid)",
},
{
id: "valid",
cfg: &testCheckBundleMetrics,
shouldFail: false,
},
}
for _, test := range tests {
test := test
t.Run(test.id, func(t *testing.T) {
_, err := apih.UpdateCheckBundleMetrics(test.cfg)
if test.shouldFail {
if err == nil {
t.Fatal("expected error")
} else if err.Error() != test.expectedErr {
t.Fatalf("unexpected error (%s)", err)
}
} else {
if err != nil {
t.Fatalf("unexpected error (%s)", err)
}
}
})
}
}