forked from signalfx/signalfx-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboardgroup_test.go
148 lines (112 loc) · 4.77 KB
/
dashboardgroup_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
package signalfx
import (
"context"
"net/http"
"net/url"
"strconv"
"testing"
"github.com/signalfx/signalfx-go/dashboard_group"
"github.com/stretchr/testify/assert"
)
// TODO Create simple dashboard group
func TestCreateDashboardGroup(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/dashboardgroup", verifyRequest(t, "POST", true, http.StatusOK, nil, "dashboardgroup/create_success.json"))
result, err := client.CreateDashboardGroup(context.Background(), &dashboard_group.CreateUpdateDashboardGroupRequest{
Name: "string",
}, false)
assert.NoError(t, err, "Unexpected error creating dashboard group")
assert.Equal(t, "string", result.Name, "Name does not match")
}
func TestCreateEmptyDashboardGroup(t *testing.T) {
teardown := setup()
defer teardown()
params := url.Values{}
params.Add("empty", "true")
mux.HandleFunc("/v2/dashboardgroup", verifyRequest(t, "POST", true, http.StatusOK, params, "dashboardgroup/create_success.json"))
result, err := client.CreateDashboardGroup(context.Background(), &dashboard_group.CreateUpdateDashboardGroupRequest{
Name: "string",
}, true)
assert.NoError(t, err, "Unexpected error creating dashboard group")
assert.Equal(t, "string", result.Name, "Name does not match")
}
func TestCreateBadDashboardGroup(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/dashboardgroup", verifyRequest(t, "POST", true, http.StatusBadRequest, nil, ""))
result, err := client.CreateDashboardGroup(context.Background(), &dashboard_group.CreateUpdateDashboardGroupRequest{
Name: "string",
}, false)
assert.Error(t, err, "Should get an error from bad dashboard group")
assert.Nil(t, result, "Should get nil result from bad dashboard group")
}
func TestDeleteDashboardGroup(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/dashboardgroup/string", verifyRequest(t, "DELETE", true, http.StatusNoContent, nil, ""))
err := client.DeleteDashboardGroup(context.Background(), "string")
assert.NoError(t, err, "Unexpected error getting dashboard group")
}
func TestDeleteMissingDashboardGroup(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/dashboardgroup/string", verifyRequest(t, "DELETE", true, http.StatusNotFound, nil, ""))
err := client.DeleteDashboardGroup(context.Background(), "string")
assert.Error(t, err, "Should get an error getting missing dashboard group")
}
func TestGetDashboardGroup(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/dashboardgroup/string", verifyRequest(t, "GET", true, http.StatusOK, nil, "dashboardgroup/get_success.json"))
result, err := client.GetDashboardGroup(context.Background(), "string")
assert.NoError(t, err, "Unexpected error getting dashboard group")
assert.Equal(t, result.Name, "string", "Name does not match")
}
func TestGetMissingDashboardGroup(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/dashboardgroup/string", verifyRequest(t, "GET", true, http.StatusNotFound, nil, ""))
result, err := client.GetDashboardGroup(context.Background(), "string")
assert.Error(t, err, "Should get error getting missing dashboard group")
assert.Nil(t, result, "Result should be nil")
}
func TestSearchDashboardGroup(t *testing.T) {
teardown := setup()
defer teardown()
limit := 10
name := "foo"
offset := 2
params := url.Values{}
params.Add("limit", strconv.Itoa(limit))
params.Add("name", name)
params.Add("offset", strconv.Itoa(offset))
mux.HandleFunc("/v2/dashboardgroup", verifyRequest(t, "GET", true, http.StatusOK, params, "dashboardgroup/search_success.json"))
results, err := client.SearchDashboardGroups(context.Background(), limit, name, offset)
assert.NoError(t, err, "Unexpected error search dashboard group")
assert.Equal(t, int32(1), results.Count, "Incorrect number of results")
}
func TestSearchDashboardGroupBad(t *testing.T) {
teardown := setup()
defer teardown()
limit := 10
name := "foo"
offset := 2
params := url.Values{}
params.Add("limit", strconv.Itoa(limit))
params.Add("name", name)
params.Add("offset", strconv.Itoa(offset))
mux.HandleFunc("/v2/dashboardgroup", verifyRequest(t, "GET", true, http.StatusBadRequest, params, ""))
_, err := client.SearchDashboardGroups(context.Background(), limit, name, offset)
assert.Error(t, err, "Unexpected error search dashboard group")
}
func TestUpdateDashboardGroup(t *testing.T) {
teardown := setup()
defer teardown()
mux.HandleFunc("/v2/dashboardgroup/string", verifyRequest(t, "PUT", true, http.StatusBadRequest, nil, ""))
result, err := client.UpdateDashboardGroup(context.Background(), "string", &dashboard_group.CreateUpdateDashboardGroupRequest{
Name: "string",
})
assert.Error(t, err, "Should have error updating missing dashboard group")
assert.Nil(t, result, "Should have nil result")
}