forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmw_auth_key_test.go
249 lines (206 loc) · 6.41 KB
/
mw_auth_key_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
package main
import (
"fmt"
"net/http"
"net/http/httptest"
"net/url"
"testing"
"time"
"github.com/justinas/alice"
"github.com/lonelycode/go-uuid/uuid"
"github.com/TykTechnologies/tyk/user"
)
func createAuthKeyAuthSession(isBench bool) *user.SessionState {
session := new(user.SessionState)
// essentially non-throttled
session.Rate = 100.0
session.Allowance = session.Rate
session.LastCheck = time.Now().Unix()
session.Per = 1.0
session.QuotaRenewalRate = 300 // 5 minutes
session.QuotaRenews = time.Now().Unix()
if isBench {
session.QuotaRemaining = 100000000
session.QuotaMax = 100000000
} else {
session.QuotaRemaining = 10
session.QuotaMax = 10
}
session.AccessRights = map[string]user.AccessDefinition{"31": {APIName: "Tyk Auth Key Test", APIID: "31", Versions: []string{"default"}}}
return session
}
func getAuthKeyChain(spec *APISpec) http.Handler {
remote, _ := url.Parse(spec.Proxy.TargetURL)
proxy := TykNewSingleHostReverseProxy(remote, spec)
proxyHandler := ProxyHandler(proxy, spec)
baseMid := BaseMiddleware{spec, proxy}
chain := alice.New(mwList(
&IPWhiteListMiddleware{baseMid},
&IPBlackListMiddleware{BaseMiddleware: baseMid},
&AuthKey{baseMid},
&VersionCheck{BaseMiddleware: baseMid},
&KeyExpired{baseMid},
&AccessRightsCheck{baseMid},
&RateLimitAndQuotaCheck{baseMid},
)...).Then(proxyHandler)
return chain
}
func testPrepareAuthKeySession(tb testing.TB, apiDef string, isBench bool) (string, *APISpec) {
spec := createSpecTest(tb, apiDef)
session := createAuthKeyAuthSession(isBench)
customToken := ""
if isBench {
customToken = uuid.New()
} else {
customToken = "54321111"
}
// AuthKey sessions are stored by {token}
spec.SessionManager.UpdateSession(customToken, session, 60, false)
return customToken, spec
}
func TestBearerTokenAuthKeySession(t *testing.T) {
customToken, spec := testPrepareAuthKeySession(t, authKeyDef, false)
recorder := httptest.NewRecorder()
req := testReq(t, "GET", "/auth_key_test/", nil)
req.Header.Set("authorization", "Bearer "+customToken)
chain := getAuthKeyChain(spec)
chain.ServeHTTP(recorder, req)
if recorder.Code != 200 {
t.Error("Initial request failed with non-200 code, should have gone through!: \n", recorder.Code)
t.Error(recorder.Body.String())
}
}
func BenchmarkBearerTokenAuthKeySession(b *testing.B) {
b.ReportAllocs()
customToken, spec := testPrepareAuthKeySession(b, authKeyDef, true)
recorder := httptest.NewRecorder()
req := testReq(b, "GET", "/auth_key_test/", nil)
req.Header.Set("authorization", "Bearer "+customToken)
chain := getAuthKeyChain(spec)
for i := 0; i < b.N; i++ {
chain.ServeHTTP(recorder, req)
if recorder.Code != 200 {
b.Error("Initial request failed with non-200 code, should have gone through!: \n", recorder.Code)
b.Error(recorder.Body.String())
}
}
}
const authKeyDef = `{
"api_id": "31",
"org_id": "default",
"auth": {"auth_header_name": "authorization"},
"version_data": {
"not_versioned": true,
"versions": {
"v1": {"name": "v1"}
}
},
"proxy": {
"listen_path": "/auth_key_test/",
"target_url": "` + testHttpAny + `"
}
}`
func TestMultiAuthBackwardsCompatibleSession(t *testing.T) {
customToken, spec := testPrepareAuthKeySession(t, multiAuthBackwardsCompatible, false)
recorder := httptest.NewRecorder()
req := testReq(t, "GET", fmt.Sprintf("/auth_key_test/?token=%s", customToken), nil)
chain := getAuthKeyChain(spec)
chain.ServeHTTP(recorder, req)
if recorder.Code != 200 {
t.Error("Initial request failed with non-200 code, should have gone through!: \n", recorder.Code)
t.Error(recorder.Body.String())
}
}
func BenchmarkMultiAuthBackwardsCompatibleSession(b *testing.B) {
b.ReportAllocs()
customToken, spec := testPrepareAuthKeySession(b, multiAuthBackwardsCompatible, true)
recorder := httptest.NewRecorder()
req := testReq(b, "GET", fmt.Sprintf("/auth_key_test/?token=%s", customToken), nil)
chain := getAuthKeyChain(spec)
for i := 0; i < b.N; i++ {
chain.ServeHTTP(recorder, req)
if recorder.Code != 200 {
b.Error("Initial request failed with non-200 code, should have gone through!: \n", recorder.Code)
b.Error(recorder.Body.String())
}
}
}
const multiAuthBackwardsCompatible = `{
"api_id": "31",
"org_id": "default",
"auth": {
"auth_header_name": "token",
"use_param": true
},
"version_data": {
"not_versioned": true,
"versions": {
"v1": {"name": "v1"}
}
},
"proxy": {
"listen_path": "/auth_key_test/",
"target_url": "` + testHttpAny + `"
}
}`
func TestMultiAuthSession(t *testing.T) {
spec := createSpecTest(t, multiAuthDef)
session := createAuthKeyAuthSession(false)
customToken := "54321111"
// AuthKey sessions are stored by {token}
spec.SessionManager.UpdateSession(customToken, session, 60, false)
// Set the url param
recorder := httptest.NewRecorder()
req := testReq(t, "GET", fmt.Sprintf("/auth_key_test/?token=%s", customToken), nil)
chain := getAuthKeyChain(spec)
chain.ServeHTTP(recorder, req)
if recorder.Code != 200 {
t.Error("First request failed with non-200 code, should have gone through!: \n", recorder.Code)
t.Error(recorder.Body.String())
}
// Set the header
recorder = httptest.NewRecorder()
req = testReq(t, "GET", "/auth_key_test/?token=", nil)
req.Header.Set("authorization", customToken)
chain.ServeHTTP(recorder, req)
if recorder.Code != 200 {
t.Error("Second request failed with non-200 code, should have gone through!: \n", recorder.Code)
t.Error(recorder.Body.String())
}
// Set the cookie
recorder = httptest.NewRecorder()
req = testReq(t, "GET", "/auth_key_test/?token=", nil)
req.AddCookie(&http.Cookie{Name: "oreo", Value: customToken})
chain.ServeHTTP(recorder, req)
if recorder.Code != 200 {
t.Error("Third request failed with non-200 code, should have gone through!: \n", recorder.Code)
t.Error(recorder.Body.String())
}
// No header, param or cookie
recorder = httptest.NewRecorder()
req = testReq(t, "GET", "/auth_key_test/", nil)
chain.ServeHTTP(recorder, req)
if recorder.Code == 200 {
t.Error("Request returned 200 code, should NOT have gone through!: \n", recorder.Code)
t.Error(recorder.Body.String())
}
}
const multiAuthDef = `{
"api_id": "31",
"org_id": "default",
"auth": {
"auth_header_name": "authorization",
"param_name": "token",
"cookie_name": "oreo"
},
"version_data": {
"not_versioned": true,
"versions": {
"v1": {"name": "v1"}
}
},
"proxy": {
"listen_path": "/auth_key_test/",
"target_url": "` + testHttpAny + `"
}
}`