-
Notifications
You must be signed in to change notification settings - Fork 5
/
broker_test.go
251 lines (233 loc) · 5.66 KB
/
broker_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
// 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"
"net/http"
"net/http/httptest"
"reflect"
"testing"
)
var (
testBroker = Broker{
CID: "/broker/1234",
Longitude: nil,
Latitude: nil,
Name: "test broker",
Tags: []string{},
Type: "enterprise",
Details: []BrokerDetail{
{
CN: "testbroker.example.com",
ExternalHost: &[]string{"testbroker.example.com"}[0],
ExternalPort: 43191,
IP: &[]string{"127.0.0.1"}[0],
MinVer: 0,
Modules: []string{"a", "b", "c"},
Port: &[]uint16{43191}[0],
Skew: nil,
Status: "active",
Version: nil,
},
},
}
)
func testBrokerServer() *httptest.Server {
f := func(w http.ResponseWriter, r *http.Request) {
path := r.URL.Path
switch path {
case "/broker/1234":
switch r.Method {
case "GET": // get by id/cid
ret, err := json.Marshal(testBroker)
if err != nil {
panic(err)
}
w.WriteHeader(200)
w.Header().Set("Content-Type", "application/json")
fmt.Fprintln(w, string(ret))
default:
w.WriteHeader(404)
fmt.Fprintf(w, "not found: %s %s\n", r.Method, path)
}
case "/broker":
switch r.Method {
case "GET": // search or filter
reqURL := r.URL.String()
var c []Broker
switch r.URL.String() {
case "/broker?search=httptrap":
c = []Broker{testBroker}
case "/broker?f__type=enterprise":
c = []Broker{testBroker}
case "/broker?f__type=enterprise&search=httptrap":
c = []Broker{testBroker}
case "/broker":
c = []Broker{testBroker}
default:
c = []Broker{}
}
if len(c) > 0 {
ret, err := json.Marshal(c)
if err != nil {
panic(err)
}
w.WriteHeader(200)
w.Header().Set("Content-Type", "application/json")
fmt.Fprintln(w, string(ret))
} else {
w.WriteHeader(404)
fmt.Fprintf(w, "not found: %s %s\n", r.Method, reqURL)
}
default:
w.WriteHeader(404)
fmt.Fprintf(w, "not found: %s %s\n", r.Method, path)
}
default:
w.WriteHeader(404)
fmt.Fprintf(w, "not found: %s %s\n", r.Method, path)
}
}
return httptest.NewServer(http.HandlerFunc(f))
}
func brokerTestBootstrap(t *testing.T) (*API, *httptest.Server) {
server := testBrokerServer()
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 TestFetchBroker(t *testing.T) {
apih, server := brokerTestBootstrap(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 broker CID (none)",
},
{
id: "short cid",
cid: "1234",
expectedType: "*apiclient.Broker",
shouldFail: false,
},
{
id: "long cid",
cid: "/broker/1234",
expectedType: "*apiclient.Broker",
shouldFail: false,
},
}
for _, test := range tests {
test := test
t.Run(test.id, func(t *testing.T) {
alert, err := apih.FetchBroker(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 TestFetchBrokers(t *testing.T) {
apih, server := brokerTestBootstrap(t)
defer server.Close()
brokers, err := apih.FetchBrokers()
if err != nil {
t.Fatalf("unexpected error (%s)", err)
}
if reflect.TypeOf(brokers).String() != "*[]apiclient.Broker" {
t.Fatalf("unexpected type (%s)", reflect.TypeOf(brokers).String())
}
}
func TestSearchBrokers(t *testing.T) {
apih, server := brokerTestBootstrap(t)
defer server.Close()
expectedType := "*[]apiclient.Broker"
search := SearchQueryType("httptrap")
filter := SearchFilterType{"f__type": []string{"enterprise"}}
tests := []struct {
search *SearchQueryType
filter *SearchFilterType
id string
expectedType string
expectedErr string
shouldFail bool
}{
{
id: "no search, no filter",
search: nil,
filter: nil,
expectedType: expectedType,
shouldFail: false,
},
{
id: "search no filter",
search: &search,
filter: nil,
expectedType: expectedType,
shouldFail: false,
},
{
id: "filter no search",
search: nil,
filter: &filter,
expectedType: expectedType,
shouldFail: false,
},
{
id: "both filter and search",
search: &search,
filter: &filter,
expectedType: expectedType,
shouldFail: false,
},
}
for _, test := range tests {
test := test
t.Run(test.id, func(t *testing.T) {
ack, err := apih.SearchBrokers(test.search, test.filter)
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(ack).String() != test.expectedType {
t.Fatalf("unexpected type (%s)", reflect.TypeOf(ack).String())
}
}
})
}
}