-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlayer_test.go
407 lines (325 loc) · 9.49 KB
/
layer_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
package layer
import (
"net/http"
"testing"
"github.com/nbio/st"
"gopkg.in/vinxi/utils.v0"
)
type plugin struct {
middleware interface{}
}
func (p *plugin) Register(mw Middleware) {
mw.Use(RequestPhase, p.middleware)
}
func newPlugin(f interface{}) *plugin {
return &plugin{middleware: f}
}
func TestMiddleware(t *testing.T) {
mw := New()
mw.Use(RequestPhase, func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("foo", "bar")
h.ServeHTTP(w, r)
})
})
st.Expect(t, mw.Pool["request"].Len(), 1)
w := utils.NewWriterStub()
req := &http.Request{}
mw.Run("request", w, req, nil)
st.Expect(t, w.Header().Get("foo"), "bar")
}
func TestNoHandlerRegistered(t *testing.T) {
mw := New()
st.Expect(t, mw.Pool["request"], (*Stack)(nil))
w := utils.NewWriterStub()
req := &http.Request{}
mw.Run("request", w, req, nil)
st.Expect(t, w.Code, 502)
st.Expect(t, string(w.Body), "Bad Gateway")
}
func TestFinalErrorHandling(t *testing.T) {
mw := New()
mw.Use("request", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
panic("something went wrong")
})
})
st.Expect(t, mw.Pool["request"].Len(), 1)
w := utils.NewWriterStub()
req := &http.Request{}
mw.Run("request", w, req, nil)
st.Expect(t, w.Code, 500)
st.Expect(t, string(w.Body), "Proxy Error")
}
func TestUseFinalHandler(t *testing.T) {
mw := New()
mw.UseFinalHandler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(503)
w.Write([]byte("vinxi: service unavailable"))
}))
w := utils.NewWriterStub()
req := &http.Request{}
mw.Run("request", w, req, nil)
st.Expect(t, w.Code, 503)
st.Expect(t, string(w.Body), "vinxi: service unavailable")
}
func TestRegisterPlugin(t *testing.T) {
mw := New()
p := newPlugin(func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("foo", "bar")
h.ServeHTTP(w, r)
})
})
mw.Use(RequestPhase, p)
st.Expect(t, mw.Pool["request"].Len(), 1)
w := utils.NewWriterStub()
req := &http.Request{}
mw.Run("request", w, req, nil)
st.Expect(t, w.Header().Get("foo"), "bar")
}
func TestRegisterUnsupportedInterface(t *testing.T) {
defer func() {
r := recover()
st.Expect(t, r, "vinxi: unsupported middleware interface")
}()
mw := New()
mw.Use(RequestPhase, func() {})
}
func TestUsePriority(t *testing.T) {
mw := New()
mw.UseFinalHandler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(503)
w.Write([]byte("vinxi: service unavailable"))
}))
array := []int{}
buildAppendingMiddleware := func(before, after int) interface{} {
return func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
array = append(array, before)
h.ServeHTTP(w, r)
array = append(array, after)
})
}
}
mw.UsePriority("request", Normal, buildAppendingMiddleware(3, 10))
mw.UsePriority("request", Tail, buildAppendingMiddleware(5, 8))
mw.UsePriority("request", Head, buildAppendingMiddleware(1, 12))
mw.UsePriority("request", Tail, buildAppendingMiddleware(6, 7))
mw.UsePriority("request", Head, buildAppendingMiddleware(2, 11))
mw.UsePriority("request", Normal, buildAppendingMiddleware(4, 9))
w := utils.NewWriterStub()
req := &http.Request{}
mw.Run("request", w, req, nil)
st.Expect(t, array, []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12})
}
func TestSimpleMiddlewareCallChain(t *testing.T) {
mw := New()
calls := 0
fn := func(w http.ResponseWriter, r *http.Request, h http.Handler) {
calls++
h.ServeHTTP(w, r)
}
final := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
calls++
})
mw.Use(RequestPhase, fn)
mw.Use(RequestPhase, fn)
mw.Use(RequestPhase, fn)
wrt := utils.NewWriterStub()
req := &http.Request{}
mw.Run("request", wrt, req, final)
st.Expect(t, calls, 4)
}
func TestFlush(t *testing.T) {
mw := New()
mw.Use("request", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
h.ServeHTTP(w, r)
})
})
mw.Flush()
st.Expect(t, mw.Pool, Pool{})
}
func TestParentLayer(t *testing.T) {
parent := New()
mw := New()
mw.SetParent(parent)
parent.Use("foo", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("foo", "foo")
h.ServeHTTP(w, r)
})
})
mw.Use("foo", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("bar", "bar")
h.ServeHTTP(w, r)
})
})
mw.Use("foo", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(200)
w.Write([]byte("hello world"))
})
})
w := utils.NewWriterStub()
req := &http.Request{}
mw.Run("foo", w, req, nil)
st.Expect(t, w.Code, 200)
st.Expect(t, w.Header().Get("foo"), "foo")
st.Expect(t, w.Header().Get("bar"), "bar")
st.Expect(t, string(w.Body), "hello world")
}
func TestParentLayerStopChain(t *testing.T) {
parent := New()
mw := New()
mw.SetParent(parent)
parent.Use("foo", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("foo", "foo")
h.ServeHTTP(w, r)
})
})
parent.Use("foo", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(200)
w.Write([]byte("hello world"))
})
})
mw.Use("foo", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(500)
w.Write([]byte("oops"))
})
})
w := utils.NewWriterStub()
req := &http.Request{}
mw.Run("foo", w, req, nil)
st.Expect(t, w.Code, 200)
st.Expect(t, w.Header().Get("foo"), "foo")
st.Expect(t, string(w.Body), "hello world")
}
func TestParentLayerPanic(t *testing.T) {
parent := New()
mw := New()
mw.SetParent(parent)
parent.Use("error", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(502)
w.Write([]byte("error"))
})
})
parent.Use("foo", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("foo", "foo")
h.ServeHTTP(w, r)
})
})
mw.Use("foo", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
panic("oops")
})
})
w := utils.NewWriterStub()
req := &http.Request{}
mw.Run("foo", w, req, nil)
st.Expect(t, w.Code, 502)
st.Expect(t, w.Header().Get("foo"), "foo")
st.Expect(t, string(w.Body), "error")
}
func TestParentLayerPanicFinalHandler(t *testing.T) {
parent := New()
mw := New()
mw.SetParent(parent)
parent.Use("error", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("error", "foo")
h.ServeHTTP(w, r)
})
})
parent.Use("foo", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("foo", "foo")
h.ServeHTTP(w, r)
})
})
mw.Use("foo", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
panic("oops")
})
})
w := utils.NewWriterStub()
req := &http.Request{}
mw.Run("foo", w, req, nil)
st.Expect(t, w.Code, 500)
st.Expect(t, w.Header().Get("foo"), "foo")
st.Expect(t, w.Header().Get("error"), "foo")
st.Expect(t, string(w.Body), "Proxy Error")
}
func TestParentLayerChildPanicHandler(t *testing.T) {
parent := New()
mw := New()
mw.SetParent(parent)
// Just discovered that this won't be called since seems like
// Go only triggers the top panic recover handler.
mw.Use("error", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("error", "child")
h.ServeHTTP(w, r)
})
})
parent.Use("error", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("error", "parent")
h.ServeHTTP(w, r)
})
})
parent.Use("foo", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("foo", "foo")
h.ServeHTTP(w, r)
})
})
mw.Use("foo", func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
panic("oops")
})
})
w := utils.NewWriterStub()
req := &http.Request{}
mw.Run("foo", w, req, nil)
st.Expect(t, w.Code, 500)
st.Expect(t, w.Header().Get("foo"), "foo")
st.Expect(t, w.Header().Get("error"), "parent")
st.Expect(t, string(w.Body), "Proxy Error")
}
func BenchmarkLayerRun(b *testing.B) {
w := utils.NewWriterStub()
req := &http.Request{}
mw := New()
for i := 0; i < 100; i++ {
mw.Use(RequestPhase, func(h http.Handler) http.Handler {
return http.HandlerFunc(h.ServeHTTP)
})
}
for n := 0; n < b.N; n++ {
mw.Run(RequestPhase, w, req, http.HandlerFunc(nil))
}
}
func BenchmarkStackLayers(b *testing.B) {
w := utils.NewWriterStub()
req := &http.Request{}
handler := func(h http.Handler) http.Handler {
return http.HandlerFunc(h.ServeHTTP)
}
mw := New()
for i := 0; i < 100; i++ {
mw.UsePriority(RequestPhase, Head, handler)
mw.UsePriority(RequestPhase, Normal, handler)
mw.UsePriority(RequestPhase, Tail, handler)
}
for n := 0; n < b.N; n++ {
mw.Run(RequestPhase, w, req, http.HandlerFunc(nil))
}
}