-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware_test.go
158 lines (129 loc) · 3.76 KB
/
middleware_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
package apirouter
import (
"net/http"
"net/http/httptest"
"reflect"
"testing"
"time"
"github.com/julienschmidt/httprouter"
)
// TestUse test the use method
func TestUse(t *testing.T) {
t.Parallel()
s := NewStack()
mw := func(fn httprouter.Handle) httprouter.Handle {
return fn
}
c := len(s.middlewares)
s.Use(mw)
if len(s.middlewares) != c+1 {
t.Error("expected Use() to increase the number of items in the InternalStack")
}
}
// TestWrap test the wrap method
func TestWrap(t *testing.T) {
t.Parallel()
s := NewStack()
var middlewareCalled bool
mw := func(fn httprouter.Handle) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
middlewareCalled = true
fn(w, r, p)
}
}
s.Use(mw)
var handlerCalled bool
hn := func(_ http.ResponseWriter, _ *http.Request, _ httprouter.Params) {
handlerCalled = true
}
wrapped := s.Wrap(hn)
req := httptest.NewRequest("GET", "/example", nil)
w := httptest.NewRecorder()
handler := plainHandler(wrapped)
handler.ServeHTTP(w, req)
if !handlerCalled {
t.Error("expected handler to have been called")
}
if !middlewareCalled {
t.Error("expected middleware to have been called")
}
}
// TestWrap_Ordering test wrap ordering
func TestWrap_Ordering(t *testing.T) {
t.Parallel()
s := NewStack()
var firstCallAt *time.Time
var secondCallAt *time.Time
var thirdCallAt *time.Time
var fourthCallAt *time.Time
var handlerCallAt *time.Time
first := func(fn httprouter.Handle) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
ts := time.Now()
firstCallAt = &ts
fn(w, r, p)
}
}
second := func(fn httprouter.Handle) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
ts := time.Now()
secondCallAt = &ts
fn(w, r, p)
}
}
third := func(fn httprouter.Handle) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
ts := time.Now()
thirdCallAt = &ts
fn(w, r, p)
}
}
fourth := func(fn httprouter.Handle) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
ts := time.Now()
fourthCallAt = &ts
fn(w, r, p)
}
}
s.Use(first)
s.Use(second)
s.Use(third)
s.Use(fourth)
hn := func(_ http.ResponseWriter, _ *http.Request, _ httprouter.Params) {
ts := time.Now()
handlerCallAt = &ts
}
wrapped := s.Wrap(hn)
req := httptest.NewRequest("GET", "/example", nil)
w := httptest.NewRecorder()
handler := plainHandler(wrapped)
handler.ServeHTTP(w, req)
if firstCallAt == nil || secondCallAt == nil || thirdCallAt == nil || fourthCallAt == nil || handlerCallAt == nil {
t.Fatal("failed to call one or more functions")
}
if firstCallAt.After(*secondCallAt) || firstCallAt.After(*thirdCallAt) || firstCallAt.After(*fourthCallAt) || firstCallAt.After(*handlerCallAt) {
t.Error("failed to call first middleware first")
}
if fourthCallAt.Before(*thirdCallAt) || fourthCallAt.Before(*secondCallAt) || fourthCallAt.After(*handlerCallAt) {
t.Error("failed to call fourth middleware last before the handler")
}
if secondCallAt.After(*thirdCallAt) {
t.Error("expected second middleware to come before the third")
}
}
// TestWrap_WhenEmpty test wrap when empty
func TestWrap_WhenEmpty(t *testing.T) {
t.Parallel()
s := NewStack()
hn := func(_ http.ResponseWriter, _ *http.Request, _ httprouter.Params) {}
w := s.Wrap(hn)
if reflect.ValueOf(hn).Pointer() != reflect.ValueOf(w).Pointer() {
t.Error("expected that Wrap() would return the given function when InternalStack is empty")
}
}
// plainHandler vanilla handler
func plainHandler(fn httprouter.Handle) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
fn(w, r, httprouter.Params{})
}
}