-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransport_test.go
462 lines (366 loc) · 9.42 KB
/
transport_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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
package simular
import (
"bytes"
"encoding/json"
"encoding/xml"
"io/ioutil"
"net"
"net/http"
"strings"
"testing"
"time"
)
var testURL = "http://www.example.com/"
func TestMockTransport(t *testing.T) {
type schema struct {
Message string `xml:"message"`
}
Activate()
defer DeactivateAndReset()
url := "https://github.com/"
body := &schema{"hello world"}
responder, err := NewXMLResponder(200, body)
if err != nil {
t.Fatal(err)
}
RegisterStubRequests(NewStubRequest("GET", url, responder))
resp, err := http.Get(url)
if err != nil {
t.Fatal(err)
}
defer resp.Body.Close()
checkBody := &schema{}
if err := xml.NewDecoder(resp.Body).Decode(checkBody); err != nil {
t.Fatal(err)
}
if checkBody.Message != body.Message {
t.FailNow()
}
// should give error when unknown url requested
_, err = http.Get(testURL)
if err == nil {
t.Fatalf("Expected error when no matching responders available")
}
}
func TestMockTransportCaseInsensitive(t *testing.T) {
Activate()
defer DeactivateAndReset()
url := "https://github.com/"
body := []byte("hello world")
RegisterStubRequests(NewStubRequest("get", url, NewBytesResponder(200, body)))
resp, err := http.Get(url)
if err != nil {
t.Fatal(err)
}
defer resp.Body.Close()
data, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
}
if string(data) != string(body) {
t.FailNow()
}
// the http client wraps our NoResponderFound error, so we just try and match on text
_, err = http.Get(testURL)
if err == nil {
t.Errorf("Expected error when no responder is available")
}
}
type mockMockTransport struct{}
func (m *mockMockTransport) RoundTrip(req *http.Request) (*http.Response, error) {
return NewStringResponse(200, "ok"), nil
}
func TestMockTransportAllowedHosts(t *testing.T) {
// cache the real initialTransport
cachedTransport := initialTransport
Activate(
WithAllowedHosts("example.com"),
)
defer DeactivateAndReset()
// set the initialTransport to be our mockMock version
initialTransport = &mockMockTransport{}
resp, err := http.Get("http://example.com:8080")
if err != nil {
t.Fatalf("Unexpected error: %+v", err)
}
defer resp.Body.Close()
// make sure we read our body back from the mockMock round tripper
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Errorf("Unexpected error: %+v", err)
}
if string(body) != "ok" {
t.Errorf("Unexpected body: %s", body)
}
// restore our original
initialTransport = cachedTransport
}
func TestMockTransportAdvanced(t *testing.T) {
type schema struct {
Message string `json:"msg"`
}
Activate()
defer DeactivateAndReset()
url := "https://github.com/banana/"
requestBody := `{"msg":"hello world"}`
requestHeader := &http.Header{
"X-ApiKey": []string{"api-key"},
}
responseBody := &schema{"ok"}
responder, err := NewJSONResponder(200, responseBody)
if err != nil {
t.Fatalf("Unexpected error constructing request: %#v", err)
}
RegisterStubRequests(
NewStubRequest(
"POST",
url,
responder,
WithHeader(
requestHeader,
),
WithBody(
bytes.NewBufferString(requestBody),
),
),
)
// should fail because missing stubbed header
_, err = http.Post(url, "application/json", bytes.NewBufferString(requestBody))
if err == nil {
t.Fatalf("POST request should have failed due to missing headers")
}
client := &http.Client{}
req, err := http.NewRequest("POST", url, bytes.NewBufferString(requestBody))
if err != nil {
t.Fatalf("Unexpected error constructing request: %#v", err)
}
req.Header.Add("X-ApiKey", "another-api-key")
resp1, err := client.Do(req)
if err == nil {
t.Fatalf("POST request should have failed due to incorrect header")
defer resp1.Body.Close()
}
req, err = http.NewRequest("POST", url, bytes.NewBufferString(requestBody))
if err != nil {
t.Fatalf("Unexpected error constructing request: %#v", err)
}
req.Header.Add("X-ApiKey", "api-key")
resp2, err := client.Do(req)
if err != nil {
t.Fatalf("Unexpected error when making request: %#v", err)
}
defer resp2.Body.Close()
checkBody := &schema{}
if err := json.NewDecoder(resp2.Body).Decode(checkBody); err != nil {
t.Fatal(err)
}
if checkBody.Message != responseBody.Message {
t.FailNow()
}
// verify that all stubs were called
if err := AllStubsCalled(); err != nil {
t.Errorf("Not all stubs were called: %s", err)
}
}
func TestAllStubsCalled(t *testing.T) {
Activate()
defer DeactivateAndReset()
// register two stubs
RegisterStubRequests(
NewStubRequest("GET", "http://github.com", NewStringResponder(200, "ok")),
NewStubRequest("GET", "http://example.com", NewStringResponder(200, "ok")),
)
// make a single request
resp, err := http.Get("http://github.com")
if err != nil {
t.Fatal(err)
}
resp.Body.Close()
err = AllStubsCalled()
if err == nil {
t.Errorf("Expected error when not all stubs called")
}
if !strings.Contains(err.Error(), "http://example.com") {
t.Errorf("Expected error message to contain uncalled stub, got: '%s'", err.Error())
}
}
func TestMockTransportReset(t *testing.T) {
DeactivateAndReset()
if len(mockTransport.stubs) > 0 {
t.Fatal("expected no responders at this point")
}
RegisterStubRequests(NewStubRequest("GET", testURL, nil))
if len(mockTransport.stubs) != 1 {
t.Fatal("expected one stubbed request")
}
Reset()
if len(mockTransport.stubs) > 0 {
t.Fatal("expected no stubbed requests as they were just reset")
}
}
func TestMockTransportNoResponder(t *testing.T) {
Activate()
defer DeactivateAndReset()
Reset()
if mockTransport.noResponder != nil {
t.Fatal("expected noResponder to be nil")
}
_, err := http.Get(testURL)
if err == nil {
t.Fatal("expected to receive a connection error due to lack of responders")
}
if err.Error() != "Get http://www.example.com/: No responders found" {
t.Errorf("Unexpected error: %s", err.Error())
}
RegisterNoResponder(NewStringResponder(200, "hello world"))
resp, err := http.Get(testURL)
if err != nil {
t.Fatal("expected request to succeed")
}
data, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
}
if string(data) != "hello world" {
t.Fatal("expected body to be 'hello world'")
}
}
func TestMockTransportWithQueryString(t *testing.T) {
Activate()
defer DeactivateAndReset()
// register a responder with query parameters
RegisterStubRequests(
NewStubRequest(
"GET",
"http://www.example.com/?first=val&second=val",
NewStringResponder(200, "hello world"),
))
testcases := []struct {
label string
url string
shouldError bool
}{
{
"no query parameters",
"http://www.example.com/",
true,
},
{
"single query parameter only",
"http://www.example.com/?first=val",
true,
},
{
"extra parameters",
"http://www.example.com/?first=val&second=val&third=val",
true,
},
{
"correct but different order",
"http://www.example.com/?second=val&first=val",
false,
},
}
for _, tc := range testcases {
t.Run(tc.label, func(t *testing.T) {
_, err := http.Get(tc.url)
if err == nil && tc.shouldError {
t.Errorf("Expected an error but got none")
}
if err != nil && !tc.shouldError {
t.Errorf("Unexpected error: %v", err)
}
})
}
}
type dummyTripper struct{}
func (d *dummyTripper) RoundTrip(*http.Request) (*http.Response, error) {
return nil, nil
}
func TestMockTransportInitialTransport(t *testing.T) {
DeactivateAndReset()
tripper := &dummyTripper{}
http.DefaultTransport = tripper
Activate()
if http.DefaultTransport == tripper {
t.Fatal("expected http.DefaultTransport to be a mock transport")
}
Deactivate()
if http.DefaultTransport != tripper {
t.Fatal("expected http.DefaultTransport to be dummy")
}
}
func TestMockTransportNonDefault(t *testing.T) {
// create a custom http client w/ custom Roundtripper
client := &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment,
Dial: (&net.Dialer{
Timeout: 60 * time.Second,
KeepAlive: 30 * time.Second,
}).Dial,
TLSHandshakeTimeout: 60 * time.Second,
},
}
// activate mocks for the client
ActivateNonDefault(client)
defer DeactivateAndReset()
body := "hello world!"
RegisterStubRequests(NewStubRequest("GET", testURL, NewStringResponder(200, body)))
req, err := http.NewRequest("GET", testURL, nil)
if err != nil {
t.Fatal(err)
}
resp, err := client.Do(req)
if err != nil {
t.Fatal(err)
}
defer resp.Body.Close()
data, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
}
if string(data) != body {
t.FailNow()
}
}
func TestMockTransportNonDefaultAllowedHosts(t *testing.T) {
// create a custom http client w/ custom Roundtripper
client := &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment,
Dial: (&net.Dialer{
Timeout: 60 * time.Second,
KeepAlive: 30 * time.Second,
}).Dial,
TLSHandshakeTimeout: 60 * time.Second,
},
}
// cache the real initialTransport
cachedTransport := initialTransport
ActivateNonDefault(
client,
WithAllowedHosts("example.com"),
)
defer DeactivateAndReset()
// set the initialTransport to be our mockMock version
initialTransport = &mockMockTransport{}
req, err := http.NewRequest("GET", "http://example.com", nil)
if err != nil {
t.Fatal(err)
}
resp, err := client.Do(req)
if err != nil {
t.Fatal(err)
}
defer resp.Body.Close()
data, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
}
if string(data) != "ok" {
t.FailNow()
}
// restore our original
initialTransport = cachedTransport
}