forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mw_auth_key_test.go
201 lines (171 loc) · 5.2 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
package main
import (
"fmt"
"net/http"
"net/http/httptest"
"net/url"
"testing"
"time"
"github.com/justinas/alice"
)
func createAuthKeyAuthSession() *SessionState {
session := new(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()
session.QuotaRemaining = 10
session.QuotaMax = 10
session.AccessRights = map[string]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)
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 TestBearerTokenAuthKeySession(t *testing.T) {
spec := createSpecTest(t, authKeyDef)
session := createAuthKeyAuthSession()
customToken := "54321111"
// AuthKey sessions are stored by {token}
spec.SessionManager.UpdateSession(customToken, session, 60)
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())
}
}
const authKeyDef = `{
"api_id": "31",
"org_id": "default",
"auth": {
"auth_header_name": "authorization"
},
"version_data": {
"not_versioned": true,
"versions": {
"Default": {
"name": "Default"
}
}
},
"proxy": {
"listen_path": "/auth_key_test/",
"target_url": "` + testHttpAny + `"
}
}`
func TestMultiAuthBackwardsCompatibleSession(t *testing.T) {
spec := createSpecTest(t, multiAuthBackwardsCompatible)
session := createAuthKeyAuthSession()
customToken := "54321111"
// AuthKey sessions are stored by {token}
spec.SessionManager.UpdateSession(customToken, session, 60)
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())
}
}
const multiAuthBackwardsCompatible = `{
"api_id": "31",
"org_id": "default",
"auth": {
"auth_header_name": "token",
"use_param": true
},
"version_data": {
"not_versioned": true,
"versions": {
"Default": {
"name": "Default"
}
}
},
"proxy": {
"listen_path": "/auth_key_test/",
"target_url": "` + testHttpAny + `"
}
}`
func TestMultiAuthSession(t *testing.T) {
spec := createSpecTest(t, multiAuthDef)
session := createAuthKeyAuthSession()
customToken := "54321111"
// AuthKey sessions are stored by {token}
spec.SessionManager.UpdateSession(customToken, session, 60)
// 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": {
"Default": {
"name": "Default"
}
}
},
"proxy": {
"listen_path": "/auth_key_test/",
"target_url": "` + testHttpAny + `"
}
}`