-
Notifications
You must be signed in to change notification settings - Fork 13
/
rye_test.go
503 lines (397 loc) · 14.8 KB
/
rye_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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
package rye
import (
"strconv"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"context"
"errors"
"fmt"
"net/http"
"net/http/httptest"
"os"
"time"
"github.com/InVisionApp/rye/fakes/statsdfakes"
"github.com/onsi/gomega/types"
)
const (
RYE_TEST_HANDLER_ENV_VAR = "RYE_TEST_HANDLER_PASS"
RYE_TEST_HANDLER_2_ENV_VAR = "RYE_TEST_HANDLER_2_PASS"
RYE_TEST_BEFORE_ENV_VAR = "RYE_TEST_HANDLER_BEFORE_PASS"
)
type statsInc struct {
Name string
Time int64
StatRate float32
}
type statsTiming struct {
Name string
Time time.Duration
StatRate float32
}
var reportedStats = make(chan fakeReportedStats)
type fakeReportedStats struct {
HandlerName string
Duration time.Duration
Request *http.Request
Response *Response
}
type fakeCustomStatter struct{}
func (fcs *fakeCustomStatter) ReportStats(handler string, dur time.Duration, req *http.Request, res *Response) error {
reportedStats <- fakeReportedStats{handler, dur, req, res}
return nil
}
var _ = Describe("Rye", func() {
var (
request *http.Request
response *httptest.ResponseRecorder
mwHandler *MWHandler
ryeConfig Config
fakeStatter *statsdfakes.FakeStatter
fakeClientStatter *fakeCustomStatter
inc chan statsInc
timing chan statsTiming
)
const (
STATRATE float32 = 1
)
BeforeEach(func() {
fakeStatter = &statsdfakes.FakeStatter{}
fakeClientStatter = &fakeCustomStatter{}
ryeConfig = Config{
Statter: fakeStatter,
StatRate: STATRATE,
}
mwHandler = NewMWHandler(ryeConfig)
response = httptest.NewRecorder()
request = &http.Request{
Header: make(map[string][]string, 0),
}
os.Unsetenv(RYE_TEST_HANDLER_ENV_VAR)
os.Unsetenv(RYE_TEST_BEFORE_ENV_VAR)
os.Unsetenv(RYE_TEST_HANDLER_2_ENV_VAR)
inc = make(chan statsInc, 2)
timing = make(chan statsTiming)
fakeStatter.IncStub = func(name string, time int64, statrate float32) error {
inc <- statsInc{name, time, statrate}
return nil
}
fakeStatter.TimingDurationStub = func(name string, time time.Duration, statrate float32) error {
timing <- statsTiming{name, time, statrate}
return nil
}
})
AfterEach(func() {
os.Unsetenv(RYE_TEST_HANDLER_ENV_VAR)
})
Describe("NewMWHandler", func() {
Context("when instantiating a mwhandler", func() {
It("should have correct attributes", func() {
ryeConfig := Config{
Statter: fakeStatter,
StatRate: STATRATE,
}
handler := NewMWHandler(ryeConfig)
Expect(handler).NotTo(BeNil())
Expect(handler.Config.Statter).To(Equal(fakeStatter))
Expect(handler.Config.StatRate).To(Equal(STATRATE))
})
It("should have attributes with default values when passed an empty config", func() {
handler := NewMWHandler(Config{})
Expect(handler).NotTo(BeNil())
Expect(handler.Config.Statter).To(BeNil())
Expect(handler.Config.StatRate).To(Equal(float32(0.0)))
})
})
})
Describe("Handle", func() {
Context("when adding a valid handler", func() {
It("should return valid HandlerFunc", func() {
h := mwHandler.Handle([]Handler{successHandler})
h.ServeHTTP(response, request)
Expect(h).ToNot(BeNil())
Expect(h).To(BeAssignableToTypeOf(func(http.ResponseWriter, *http.Request) {}))
Expect(os.Getenv(RYE_TEST_HANDLER_ENV_VAR)).To(Equal("1"))
Eventually(inc).Should(Receive(Equal(statsInc{"handlers.successHandler.2xx", 1, float32(STATRATE)})))
Eventually(timing).Should(Receive(HaveTiming("handlers.successHandler.runtime", float32(STATRATE))))
})
})
Context("when adding a global handler it should get called for multiple handler chains", func() {
It("should execute before handlers and end in success", func() {
handlerWithGlobals := NewMWHandler(ryeConfig)
handlerWithGlobals.Use(beforeHandler)
handlerWithGlobals.Use(beforeHandler)
handlerWithGlobals.Use(beforeHandler)
h := handlerWithGlobals.Handle([]Handler{successHandler})
h.ServeHTTP(response, request)
Expect(h).ToNot(BeNil())
Expect(h).To(BeAssignableToTypeOf(func(http.ResponseWriter, *http.Request) {}))
Expect(os.Getenv(RYE_TEST_HANDLER_ENV_VAR)).To(Equal("1"))
Expect(os.Getenv(RYE_TEST_BEFORE_ENV_VAR)).To(Equal("3"))
})
It("should execute before handlers and multiple Handles should manage their closure correctly", func() {
handlerWithGlobals := NewMWHandler(ryeConfig)
handlerWithGlobals.Use(beforeHandler)
handlerWithGlobals.Use(beforeHandler)
handlerWithGlobals.Use(beforeHandler)
h := handlerWithGlobals.Handle([]Handler{successHandler})
h2 := handlerWithGlobals.Handle([]Handler{success2Handler})
h.ServeHTTP(response, request)
h2.ServeHTTP(response, request)
Expect(h).ToNot(BeNil())
Expect(h).To(BeAssignableToTypeOf(func(http.ResponseWriter, *http.Request) {}))
Expect(h2).ToNot(BeNil())
Expect(h2).To(BeAssignableToTypeOf(func(http.ResponseWriter, *http.Request) {}))
before := os.Getenv(RYE_TEST_BEFORE_ENV_VAR)
handler1 := os.Getenv(RYE_TEST_HANDLER_ENV_VAR)
handler2 := os.Getenv(RYE_TEST_HANDLER_2_ENV_VAR)
Expect(before).To(Equal("6"))
Expect(handler1).To(Equal("1"))
Expect(handler2).To(Equal("1"))
})
})
Context("when a handler returns a response with StopExecution", func() {
It("should not execute any further handlers", func() {
request.Method = "OPTIONS"
h := mwHandler.Handle([]Handler{stopExecutionHandler, successHandler})
h.ServeHTTP(response, request)
Expect(os.Getenv(RYE_TEST_HANDLER_ENV_VAR)).ToNot(Equal("1"))
})
})
Context("when a handler returns a response with StopExecution and StatusCode", func() {
It("should not execute any further handlers", func() {
h := mwHandler.Handle([]Handler{stopExecutionWithStatusHandler, successHandler})
h.ServeHTTP(response, request)
Eventually(inc).Should(Receive(Equal(statsInc{"handlers.stopExecutionWithStatusHandler.404", 1, float32(STATRATE)})))
Expect(os.Getenv(RYE_TEST_HANDLER_ENV_VAR)).ToNot(Equal("1"))
})
})
Context("when a before handler returns a response with StopExecution", func() {
It("should not execute any further handlers", func() {
request.Method = "OPTIONS"
mwHandler.beforeHandlers = []Handler{stopExecutionHandler}
h := mwHandler.Handle([]Handler{successHandler})
h.ServeHTTP(response, request)
Expect(os.Getenv(RYE_TEST_HANDLER_ENV_VAR)).ToNot(Equal("1"))
})
})
Context("when a handler returns a response with Context", func() {
It("should add that new context to the next passed request", func() {
h := mwHandler.Handle([]Handler{contextHandler, checkContextHandler})
h.ServeHTTP(response, request)
Expect(os.Getenv(RYE_TEST_HANDLER_ENV_VAR)).To(Equal("1"))
})
})
Context("when a beforehandler returns a response with Context", func() {
It("should add that new context to the next passed request", func() {
mwHandler.beforeHandlers = []Handler{contextHandler}
h := mwHandler.Handle([]Handler{checkContextHandler})
h.ServeHTTP(response, request)
Expect(os.Getenv(RYE_TEST_HANDLER_ENV_VAR)).To(Equal("1"))
})
})
Context("when a handler returns a response with neither error or StopExecution set", func() {
It("should return a 500 + error message (and stop execution)", func() {
h := mwHandler.Handle([]Handler{badResponseHandler, successHandler})
h.ServeHTTP(response, request)
Expect(response.Code).To(Equal(http.StatusInternalServerError))
Expect(os.Getenv(RYE_TEST_HANDLER_ENV_VAR)).ToNot(Equal("1"))
})
})
Context("when adding an erroneous handler", func() {
It("should interrupt handler chain and set a response status code", func() {
h := mwHandler.Handle([]Handler{failureHandler})
h.ServeHTTP(response, request)
Expect(h).ToNot(BeNil())
Expect(h).To(BeAssignableToTypeOf(func(http.ResponseWriter, *http.Request) {}))
Expect(response.Code).To(Equal(505))
Eventually(inc).Should(Receive(Equal(statsInc{"errors", 1, float32(STATRATE)})))
Eventually(inc).Should(Receive(Equal(statsInc{"handlers.failureHandler.505", 1, float32(STATRATE)})))
Eventually(timing).Should(Receive(HaveTiming("handlers.failureHandler.runtime", float32(STATRATE))))
})
})
Context("when the statter is not set", func() {
It("should not call Inc or TimingDuration", func() {
ryeConfig := Config{}
handler := NewMWHandler(ryeConfig)
h := handler.Handle([]Handler{successHandler})
h.ServeHTTP(response, request)
Expect(fakeStatter.IncCallCount()).To(Equal(0))
Expect(fakeStatter.TimingDurationCallCount()).To(Equal(0))
})
})
Context("when error stats are turned off", func() {
It("should not call Inc or TimingDuration", func() {
ryeConfig := Config{
Statter: fakeStatter,
NoErrStats: true,
}
handler := NewMWHandler(ryeConfig)
//use the failureHandler so an error would be reported
h := handler.Handle([]Handler{failureHandler})
h.ServeHTTP(response, request)
time.Sleep(time.Millisecond * 10)
Expect(fakeStatter.IncCallCount()).To(Equal(1))
metric, _, _ := fakeStatter.IncArgsForCall(0)
Expect(metric).ToNot(Equal("errors"))
Expect(fakeStatter.TimingDurationCallCount()).To(Equal(1))
})
})
Context("when statusCode stats are turned off", func() {
It("should not call Inc or TimingDuration", func() {
ryeConfig := Config{
Statter: fakeStatter,
NoStatusCodeStats: true,
}
handler := NewMWHandler(ryeConfig)
//use the failureHandler so an error would be reported
h := handler.Handle([]Handler{failureHandler})
h.ServeHTTP(response, request)
time.Sleep(time.Millisecond * 10)
Expect(fakeStatter.IncCallCount()).To(Equal(1))
metric, _, _ := fakeStatter.IncArgsForCall(0)
Expect(metric).ToNot(ContainSubstring("handlers."))
Expect(fakeStatter.TimingDurationCallCount()).To(Equal(1))
})
})
Context("when timming stats are turned off", func() {
It("should not call Inc or TimingDuration", func() {
ryeConfig := Config{
Statter: fakeStatter,
NoDurationStats: true,
}
handler := NewMWHandler(ryeConfig)
//use the failureHandler so an error would be reported
h := handler.Handle([]Handler{failureHandler})
h.ServeHTTP(response, request)
time.Sleep(time.Millisecond * 10)
Expect(fakeStatter.TimingDurationCallCount()).To(Equal(0))
Expect(fakeStatter.IncCallCount()).To(Equal(2))
})
})
Context("when a custom statter is supplied", func() {
It("should call the ReportStats method", func() {
ryeConfig := Config{
Statter: fakeStatter,
StatRate: STATRATE,
CustomStatter: fakeClientStatter,
}
handler := NewMWHandler(ryeConfig)
h := handler.Handle([]Handler{successWithResponse})
h.ServeHTTP(response, request)
Expect(h).ToNot(BeNil())
Expect(h).To(BeAssignableToTypeOf(func(http.ResponseWriter, *http.Request) {}))
Eventually(inc).Should(Receive(Equal(statsInc{"handlers.successWithResponse.200", 1, float32(STATRATE)})))
Eventually(timing).Should(Receive(HaveTiming("handlers.successWithResponse.runtime", float32(STATRATE))))
var receivedReportedStats fakeReportedStats
var resp *Response
Eventually(reportedStats).Should(Receive(&receivedReportedStats))
Expect(receivedReportedStats.HandlerName).To(Equal("successWithResponse"))
Expect(receivedReportedStats.Duration.Seconds()/1000 > 0).To(Equal(true))
Expect(receivedReportedStats.Request).To(BeAssignableToTypeOf(request))
Expect(receivedReportedStats.Response).To(BeAssignableToTypeOf(resp))
Expect(receivedReportedStats.Response.StatusCode).To(Equal(200))
})
})
Context("when a custom statter is NOT supplied", func() {
It("should not call the ReportStats method", func() {
ryeConfig := Config{
Statter: fakeStatter,
StatRate: STATRATE,
}
handler := NewMWHandler(ryeConfig)
h := handler.Handle([]Handler{successWithResponse})
h.ServeHTTP(response, request)
Expect(h).ToNot(BeNil())
Expect(h).To(BeAssignableToTypeOf(func(http.ResponseWriter, *http.Request) {}))
Eventually(inc).Should(Receive(Equal(statsInc{"handlers.successWithResponse.200", 1, float32(STATRATE)})))
Eventually(timing).Should(Receive(HaveTiming("handlers.successWithResponse.runtime", float32(STATRATE))))
time.Sleep(time.Millisecond * 10)
var receivedReportedStats fakeReportedStats
Expect(receivedReportedStats.HandlerName).To(Equal(""))
Expect(receivedReportedStats.Duration.Nanoseconds()).To(Equal(int64(0)))
Expect(receivedReportedStats.Request).To(BeNil())
Expect(receivedReportedStats.Response).To(BeNil())
})
})
})
Describe("getFuncName", func() {
It("should return the name of the function as a string", func() {
funcName := getFuncName(testFunc)
Expect(funcName).To(Equal("testFunc"))
})
})
Describe("Error()", func() {
Context("when an error is set on Response struct", func() {
It("should return a string if you call Error()", func() {
resp := &Response{
Err: errors.New("some error"),
}
Expect(resp.Error()).To(Equal("some error"))
})
})
})
})
func beforeHandler(rw http.ResponseWriter, r *http.Request) *Response {
counter := os.Getenv(RYE_TEST_BEFORE_ENV_VAR)
counterInt, err := strconv.Atoi(counter)
if err != nil {
counterInt = 0
}
counterInt++
os.Setenv(RYE_TEST_BEFORE_ENV_VAR, strconv.Itoa(counterInt))
return nil
}
func contextHandler(rw http.ResponseWriter, r *http.Request) *Response {
ctx := context.WithValue(r.Context(), "test-val", "exists")
return &Response{Context: ctx}
}
func checkContextHandler(rw http.ResponseWriter, r *http.Request) *Response {
testVal := r.Context().Value("test-val")
if testVal == "exists" {
os.Setenv(RYE_TEST_HANDLER_ENV_VAR, "1")
}
return nil
}
func successHandler(rw http.ResponseWriter, r *http.Request) *Response {
os.Setenv(RYE_TEST_HANDLER_ENV_VAR, "1")
return nil
}
func success2Handler(rw http.ResponseWriter, r *http.Request) *Response {
os.Setenv(RYE_TEST_HANDLER_2_ENV_VAR, "1")
return nil
}
func successWithResponse(rw http.ResponseWriter, r *http.Request) *Response {
return &Response{
StatusCode: 200,
Err: nil,
StopExecution: false,
Context: context.Background(),
}
}
func badResponseHandler(rw http.ResponseWriter, r *http.Request) *Response {
return &Response{}
}
func failureHandler(rw http.ResponseWriter, r *http.Request) *Response {
return &Response{
StatusCode: 505,
Err: fmt.Errorf("Foo"),
}
}
func stopExecutionHandler(rw http.ResponseWriter, r *http.Request) *Response {
return &Response{
StopExecution: true,
}
}
func stopExecutionWithStatusHandler(rw http.ResponseWriter, r *http.Request) *Response {
return &Response{
StopExecution: true,
StatusCode: 404,
}
}
func testFunc() {}
func HaveTiming(name string, statrate float32) types.GomegaMatcher {
return WithTransform(
func(p statsTiming) bool {
return p.Name == name && p.StatRate == statrate
}, BeTrue())
}