forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
middleware_auth_key_test.go
279 lines (244 loc) · 7.39 KB
/
middleware_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
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
package main
import (
"fmt"
"github.com/justinas/alice"
"io/ioutil"
"net/http"
"net/http/httptest"
"net/url"
"strings"
"testing"
"time"
)
func createAuthKeyAuthSession() SessionState {
var thisSession SessionState
// essentially non-throttled
thisSession.Rate = 100.0
thisSession.Allowance = thisSession.Rate
thisSession.LastCheck = time.Now().Unix()
thisSession.Per = 1.0
thisSession.Expires = 0
thisSession.QuotaRenewalRate = 300 // 5 minutes
thisSession.QuotaRenews = time.Now().Unix()
thisSession.QuotaRemaining = 10
thisSession.QuotaMax = 10
thisSession.AccessRights = map[string]AccessDefinition{"31": AccessDefinition{APIName: "Tyk Auth Key Test", APIID: "31", Versions: []string{"default"}}}
return thisSession
}
func getAuthKeyChain(spec APISpec) http.Handler {
remote, _ := url.Parse(spec.Proxy.TargetURL)
proxy := TykNewSingleHostReverseProxy(remote, &spec)
proxyHandler := http.HandlerFunc(ProxyHandler(proxy, &spec))
tykMiddleware := &TykMiddleware{&spec, proxy}
chain := alice.New(
CreateMiddleware(&IPWhiteListMiddleware{tykMiddleware}, tykMiddleware),
CreateMiddleware(&AuthKey{tykMiddleware}, tykMiddleware),
CreateMiddleware(&VersionCheck{TykMiddleware: tykMiddleware}, tykMiddleware),
CreateMiddleware(&KeyExpired{tykMiddleware}, tykMiddleware),
CreateMiddleware(&AccessRightsCheck{tykMiddleware}, tykMiddleware),
CreateMiddleware(&RateLimitAndQuotaCheck{tykMiddleware}, tykMiddleware)).Then(proxyHandler)
return chain
}
func setUp(def string) APISpec {
spec := createDefinitionFromString(def)
redisStore := RedisClusterStorageManager{KeyPrefix: "apikey-"}
healthStore := &RedisClusterStorageManager{KeyPrefix: "apihealth."}
orgStore := &RedisClusterStorageManager{KeyPrefix: "orgKey."}
spec.Init(&redisStore, &redisStore, healthStore, orgStore)
return spec
}
func TestBearerTokenAuthKeySession(t *testing.T) {
spec := setUp(authKeyDef)
thisSession := createAuthKeyAuthSession()
customToken := "54321111"
// AuthKey sessions are stored by {token}
spec.SessionManager.UpdateSession(customToken, thisSession, 60)
recorder := httptest.NewRecorder()
req, err := http.NewRequest("GET", "/auth_key_test/", nil)
if err != nil {
log.Error("Problem creating new request object.", err)
}
req.Header.Add("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(ioutil.ReadAll(recorder.Body))
}
}
var authKeyDef string = `
{
"name": "Tyk Auth Key Test",
"api_id": "31",
"org_id": "default",
"use_keyless": false,
"definition": {
"location": "header",
"key": "version"
},
"auth": {
"auth_header_name": "authorization"
},
"version_data": {
"not_versioned": true,
"versions": {
"Default": {
"name": "Default",
"use_extended_paths": true,
"expires": "3000-01-02 15:04",
"paths": {
"ignored": [],
"white_list": [],
"black_list": []
}
}
}
},
"proxy": {
"listen_path": "/auth_key_test/",
"target_url": "http://example.com/",
"strip_listen_path": true
}
}`
func TestMultiAuthBackwardsCompatibleSession(t *testing.T) {
spec := setUp(multiAuthBackwardsCompatible)
thisSession := createAuthKeyAuthSession()
customToken := "54321111"
// AuthKey sessions are stored by {token}
spec.SessionManager.UpdateSession(customToken, thisSession, 60)
recorder := httptest.NewRecorder()
req, err := http.NewRequest("GET", fmt.Sprintf("/auth_key_test/?token=%s", customToken), strings.NewReader(""))
if err != nil {
log.Error("Problem creating new request object.", err)
}
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(ioutil.ReadAll(recorder.Body))
}
}
var multiAuthBackwardsCompatible string = `
{
"name": "Tyk Auth Key Test",
"api_id": "31",
"org_id": "default",
"use_keyless": false,
"definition": {
"location": "header",
"key": "version"
},
"auth": {
"auth_header_name": "token",
"use_param": true
},
"version_data": {
"not_versioned": true,
"versions": {
"Default": {
"name": "Default",
"use_extended_paths": true,
"expires": "3000-01-02 15:04",
"paths": {
"ignored": [],
"white_list": [],
"black_list": []
}
}
}
},
"proxy": {
"listen_path": "/auth_key_test/",
"target_url": "http://example.com/",
"strip_listen_path": true
}
}`
func TestMultiAuthSession(t *testing.T) {
spec := setUp(multiAuthDef)
thisSession := createAuthKeyAuthSession()
customToken := "54321111"
// AuthKey sessions are stored by {token}
spec.SessionManager.UpdateSession(customToken, thisSession, 60)
var req *http.Request
var err error
var recorder *httptest.ResponseRecorder
// Set the url param
recorder = httptest.NewRecorder()
if req, err = http.NewRequest("GET", fmt.Sprintf("/auth_key_test/?token=%s", customToken), strings.NewReader("")); err != nil {
log.Error("Problem creating new request object.", err)
}
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(ioutil.ReadAll(recorder.Body))
}
// Set the header
recorder = httptest.NewRecorder()
if req, err = http.NewRequest("GET", "/auth_key_test/?token=", strings.NewReader("")); err != nil {
log.Error("Problem creating new request object.", err)
}
req.Header.Add("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(ioutil.ReadAll(recorder.Body))
}
// Set the cookie
recorder = httptest.NewRecorder()
if req, err = http.NewRequest("GET", "/auth_key_test/?token=", strings.NewReader("")); err != nil {
log.Error("Problem creating new request object.", err)
}
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(ioutil.ReadAll(recorder.Body))
}
// No header, param or cookie
recorder = httptest.NewRecorder()
if req, err = http.NewRequest("GET", "/auth_key_test/", strings.NewReader("")); err != nil {
log.Error("Problem creating new request object.", err)
}
chain.ServeHTTP(recorder, req)
if recorder.Code == 200 {
t.Error("Request returned 200 code, should NOT have gone through!: \n", recorder.Code)
t.Error(ioutil.ReadAll(recorder.Body))
}
}
var multiAuthDef string = `
{
"name": "Tyk Auth Key Test",
"api_id": "31",
"org_id": "default",
"use_keyless": false,
"definition": {
"location": "header",
"key": "version"
},
"auth": {
"auth_header_name": "authorization",
"param_name": "token",
"cookie_name": "oreo"
},
"version_data": {
"not_versioned": true,
"versions": {
"Default": {
"name": "Default",
"use_extended_paths": true,
"expires": "3000-01-02 15:04",
"paths": {
"ignored": [],
"white_list": [],
"black_list": []
}
}
}
},
"proxy": {
"listen_path": "/auth_key_test/",
"target_url": "http://example.com/",
"strip_listen_path": true
}
}`