forked from signalfx/signalfx-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chart_test.go
147 lines (113 loc) · 4.27 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
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, "Exepcted 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")
}