-
Notifications
You must be signed in to change notification settings - Fork 53
/
chart_test.go
223 lines (171 loc) · 6.72 KB
/
chart_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
package signalfx
import (
"context"
"net/http"
"net/url"
"strconv"
"testing"
"github.com/signalfx/signalfx-go/chart"
"github.com/stretchr/testify/assert"
)
func TestCreateChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart", verifyRequest(t, "POST", true, http.StatusOK, nil, "chart/create_success.json"))
result, err := client.CreateChart(context.Background(), &chart.CreateUpdateChartRequest{
Name: "string",
})
assert.NoError(t, err, "Unexpected error creating chart")
assert.Equal(t, "string", result.Name, "Name does not match")
}
func TestBadCreateChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart", verifyRequest(t, "POST", true, http.StatusBadRequest, nil, ""))
result, err := client.CreateChart(context.Background(), &chart.CreateUpdateChartRequest{
Name: "string",
})
assert.Error(t, err, "Expected error creating bad chart")
assert.Nil(t, result, "Expected nil result creating bad chart")
}
func TestCreateSloChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart/createSloChart", verifyRequest(t, "POST", true, http.StatusOK, nil, "chart/create_success.json"))
result, err := client.CreateSloChart(context.Background(), &chart.CreateUpdateSloChartRequest{
SloId: "slo-id",
})
assert.NoError(t, err, "Unexpected error creating chart")
assert.Equal(t, "slo-id", result.SloId, "SLO ID does not match")
}
func TestBadCreateSloChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart/createSloChart", verifyRequest(t, "POST", true, http.StatusBadRequest, nil, ""))
result, err := client.CreateSloChart(context.Background(), &chart.CreateUpdateSloChartRequest{
SloId: "slo-id",
})
assert.Error(t, err, "Expected error creating bad chart")
assert.Nil(t, result, "Expected nil result creating bad chart")
}
func TestDeleteChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart/string", verifyRequest(t, "DELETE", true, http.StatusOK, nil, ""))
err := client.DeleteChart(context.Background(), "string")
assert.NoError(t, err, "Unexpected error deleting chart")
}
func TestDeleteMissingChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart/string", verifyRequest(t, "DELETE", true, http.StatusNotFound, nil, ""))
err := client.DeleteChart(context.Background(), "string")
assert.Error(t, err, "Expected error deleting missing chart")
}
func TestGetChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart/string", verifyRequest(t, "GET", true, http.StatusOK, nil, "chart/get_success.json"))
result, err := client.GetChart(context.Background(), "string")
assert.NoError(t, err, "Unexpected error getting chart")
assert.Equal(t, result.Name, "string", "Name does not match")
}
func TestGetMissingChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart/string", verifyRequest(t, "GET", true, http.StatusNotFound, nil, ""))
result, err := client.GetChart(context.Background(), "string")
assert.Error(t, err, "Expected error getting missing chart")
assert.Nil(t, result, "Expected nil result getting chart")
}
func TestSearchChart(t *testing.T) {
teardown := setup()
defer teardown()
limit := 10
name := "foo"
offset := 2
tags := "bar"
params := url.Values{}
params.Add("limit", strconv.Itoa(limit))
params.Add("name", name)
params.Add("offset", strconv.Itoa(offset))
params.Add("tags", tags)
mux.HandleFunc("/v2/chart", verifyRequest(t, "GET", true, http.StatusOK, params, "chart/search_success.json"))
results, err := client.SearchCharts(context.Background(), limit, name, offset, tags)
assert.NoError(t, err, "Unexpected error search chart")
assert.Equal(t, int32(1), results.Count, "Incorrect number of results")
}
func TestSearchChartBad(t *testing.T) {
teardown := setup()
defer teardown()
limit := 10
name := "foo"
offset := 2
tags := "bar"
params := url.Values{}
params.Add("limit", strconv.Itoa(limit))
params.Add("name", name)
params.Add("offset", strconv.Itoa(offset))
params.Add("tags", tags)
mux.HandleFunc("/v2/chart", verifyRequest(t, "GET", true, http.StatusBadRequest, params, ""))
_, err := client.SearchCharts(context.Background(), limit, name, offset, tags)
assert.Error(t, err, "Unexpected error search chart")
}
func TestUpdateChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart/string", verifyRequest(t, "PUT", true, http.StatusOK, nil, "chart/update_success.json"))
result, err := client.UpdateChart(context.Background(), "string", &chart.CreateUpdateChartRequest{
Name: "string",
})
assert.NoError(t, err, "Unexpected error updating chart")
assert.Equal(t, "string", result.Name, "Name does not match")
}
func TestUpdateMissingChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart/string", verifyRequest(t, "PUT", true, http.StatusNotFound, nil, ""))
result, err := client.UpdateChart(context.Background(), "string", &chart.CreateUpdateChartRequest{
Name: "string",
})
assert.Error(t, err, "Expected error updating chart")
assert.Nil(t, result, "Expected nil result updating chart")
}
func TestUpdateSloChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart/updateSloChart/slo-id", verifyRequest(t, "PUT", true, http.StatusOK, nil, "chart/update_success.json"))
result, err := client.UpdateSloChart(context.Background(), "slo-id", &chart.CreateUpdateSloChartRequest{
SloId: "slo-id",
})
assert.NoError(t, err, "Unexpected error updating chart")
assert.Equal(t, "slo-id", result.SloId, "SLO ID does not match")
}
func TestUpdateMissingSloChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart/updateSloChart/slo-id", verifyRequest(t, "PUT", true, http.StatusNotFound, nil, ""))
result, err := client.UpdateSloChart(context.Background(), "slo-id", &chart.CreateUpdateSloChartRequest{
SloId: "slo-id",
})
assert.Error(t, err, "Expected error updating chart")
assert.Nil(t, result, "Expected nil result updating chart")
}
func TestValidateChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart/validate", verifyRequest(t, "POST", true, http.StatusNoContent, nil, ""))
err := client.ValidateChart(context.Background(), &chart.CreateUpdateChartRequest{
Name: "string",
})
assert.NoError(t, err, "Unexpected error creating chart")
}
func TestBadValidateChart(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/chart/validate", verifyRequest(t, "POST", true, http.StatusBadRequest, nil, ""))
err := client.ValidateChart(context.Background(), &chart.CreateUpdateChartRequest{
Name: "string",
})
assert.Error(t, err, "Expected error creating bad chart")
}