-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmw_basic_auth_test.go
253 lines (207 loc) · 9.32 KB
/
mw_basic_auth_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
package main
import (
"encoding/base64"
"fmt"
"net/http"
"strings"
"testing"
"github.com/TykTechnologies/tyk/storage"
"github.com/TykTechnologies/tyk/config"
"github.com/TykTechnologies/tyk/test"
"github.com/TykTechnologies/tyk/user"
)
func genAuthHeader(username, password string) string {
toEncode := strings.Join([]string{username, password}, ":")
encodedPass := base64.StdEncoding.EncodeToString([]byte(toEncode))
return fmt.Sprintf("Basic %s", encodedPass)
}
func testPrepareBasicAuth(cacheDisabled bool) *user.SessionState {
session := createStandardSession()
session.BasicAuthData.Password = "password"
session.AccessRights = map[string]user.AccessDefinition{"test": {APIID: "test", Versions: []string{"v1"}}}
session.OrgID = "default"
buildAndLoadAPI(func(spec *APISpec) {
spec.UseBasicAuth = true
spec.BasicAuth.DisableCaching = cacheDisabled
spec.UseKeylessAccess = false
spec.Proxy.ListenPath = "/"
spec.OrgID = "default"
})
return session
}
func TestBasicAuth(t *testing.T) {
ts := newTykTestServer()
defer ts.Close()
session := testPrepareBasicAuth(false)
validPassword := map[string]string{"Authorization": genAuthHeader("user", "password")}
wrongPassword := map[string]string{"Authorization": genAuthHeader("user", "wrong")}
wrongFormat := map[string]string{"Authorization": genAuthHeader("user", "password:more")}
malformed := map[string]string{"Authorization": "not base64"}
ts.Run(t, []test.TestCase{
// Create base auth based key
{Method: "POST", Path: "/tyk/keys/defaultuser", Data: session, AdminAuth: true, Code: 200},
{Method: "GET", Path: "/", Code: 401, BodyMatch: `Authorization field missing`},
{Method: "GET", Path: "/", Headers: validPassword, Code: 200},
{Method: "GET", Path: "/", Headers: wrongPassword, Code: 401},
{Method: "GET", Path: "/", Headers: wrongFormat, Code: 400, BodyMatch: `Attempted access with malformed header, values not in basic auth format`},
{Method: "GET", Path: "/", Headers: malformed, Code: 400, BodyMatch: `Attempted access with malformed header, auth data not encoded correctly`},
}...)
}
func TestBasicAuthLegacyWithHashFunc(t *testing.T) {
globalConf := config.Global()
globalConf.HashKeys = true
globalConf.EnableHashedKeysListing = true
// settings to create BA session with legacy key format
globalConf.HashKeyFunction = ""
config.SetGlobal(globalConf)
defer resetTestConfig()
ts := newTykTestServer()
defer ts.Close()
// create session with legacy key format
session := testPrepareBasicAuth(false)
validPassword := map[string]string{"Authorization": genAuthHeader("user", "password")}
ts.Run(t, []test.TestCase{
// Create base auth based key
{Method: "POST", Path: "/tyk/keys/defaultuser", Data: session, AdminAuth: true, Code: 200},
{Method: "GET", Path: "/", Headers: validPassword, Code: 200},
}...)
// set custom hashing function and check if we still do BA session auth with legacy key format
globalConf.HashKeyFunction = storage.HashMurmur64
config.SetGlobal(globalConf)
ts.Run(t, []test.TestCase{
// Create base auth based key
{Method: "GET", Path: "/", Headers: validPassword, Code: 200},
}...)
}
func TestBasicAuthCachedUserCollision(t *testing.T) {
globalConf := config.Global()
globalConf.HashKeys = true
globalConf.HashKeyFunction = "murmur64"
config.SetGlobal(globalConf)
defer resetTestConfig()
ts := newTykTestServer()
defer ts.Close()
session := testPrepareBasicAuth(false)
correct := map[string]string{"Authorization": genAuthHeader("bellbell1", "password")}
remove1 := map[string]string{"Authorization": genAuthHeader("bellbell", "password")}
remove2 := map[string]string{"Authorization": genAuthHeader("bellbel", "password")}
remove3 := map[string]string{"Authorization": genAuthHeader("bellbe", "password")}
remove4 := map[string]string{"Authorization": genAuthHeader("bellb", "password")}
remove5 := map[string]string{"Authorization": genAuthHeader("bell", "password")}
add1 := map[string]string{"Authorization": genAuthHeader("bellbell11", "password")}
add2 := map[string]string{"Authorization": genAuthHeader("bellbell12", "password")}
add3 := map[string]string{"Authorization": genAuthHeader("bellbell13", "password")}
ts.Run(t, []test.TestCase{
// Create base auth based key
{Method: "POST", Path: "/tyk/keys/bellbell1", Data: session, AdminAuth: true, Code: http.StatusOK},
{Method: "GET", Path: "/", Headers: correct, Code: http.StatusOK},
{Method: "GET", Path: "/", Headers: remove1, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: remove2, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: remove3, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: remove4, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: remove5, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: add1, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: add2, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: add3, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: correct, Code: http.StatusOK},
}...)
}
func TestBasicAuthCachedPasswordCollision(t *testing.T) {
ts := newTykTestServer()
defer ts.Close()
for _, useCache := range []bool{true, false} {
correct := map[string]string{"Authorization": genAuthHeader("bellbell1", "password")}
remove1 := map[string]string{"Authorization": genAuthHeader("bellbell1", "passwor")}
remove2 := map[string]string{"Authorization": genAuthHeader("bellbell1", "passwo")}
remove3 := map[string]string{"Authorization": genAuthHeader("bellbell1", "passw")}
remove4 := map[string]string{"Authorization": genAuthHeader("bellbell1", "pass")}
remove5 := map[string]string{"Authorization": genAuthHeader("bellbell1", "pas")}
add1 := map[string]string{"Authorization": genAuthHeader("bellbell1", "password1")}
add2 := map[string]string{"Authorization": genAuthHeader("bellbell1", "password22")}
add3 := map[string]string{"Authorization": genAuthHeader("bellbell1", "password333")}
t.Run(fmt.Sprintf("Cache disabled:%v", useCache), func(t *testing.T) {
session := testPrepareBasicAuth(useCache)
ts.Run(t, []test.TestCase{
// Create base auth based key
{Method: "POST", Path: "/tyk/keys/bellbell1", Data: session, AdminAuth: true, Code: http.StatusOK},
{Method: "GET", Path: "/", Headers: correct, Code: http.StatusOK},
{Method: "GET", Path: "/", Headers: remove1, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: remove2, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: remove3, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: remove4, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: remove5, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: add1, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: add2, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: add3, Code: http.StatusUnauthorized},
{Method: "GET", Path: "/", Headers: correct, Code: http.StatusOK},
}...)
})
}
}
func BenchmarkBasicAuth(b *testing.B) {
b.ReportAllocs()
ts := newTykTestServer()
defer ts.Close()
session := testPrepareBasicAuth(false)
validPassword := map[string]string{"Authorization": genAuthHeader("user", "password")}
wrongPassword := map[string]string{"Authorization": genAuthHeader("user", "wrong")}
wrongFormat := map[string]string{"Authorization": genAuthHeader("user", "password:more")}
malformed := map[string]string{"Authorization": "not base64"}
// Create base auth based key
ts.Run(b, test.TestCase{
Method: "POST",
Path: "/tyk/keys/defaultuser",
Data: session,
AdminAuth: true,
Code: 200,
})
for i := 0; i < b.N; i++ {
ts.Run(b, []test.TestCase{
{Method: "GET", Path: "/", Code: 401, BodyMatch: `Authorization field missing`},
{Method: "GET", Path: "/", Headers: validPassword, Code: 200},
{Method: "GET", Path: "/", Headers: wrongPassword, Code: 401},
{Method: "GET", Path: "/", Headers: wrongFormat, Code: 400, BodyMatch: `Attempted access with malformed header, values not in basic auth format`},
{Method: "GET", Path: "/", Headers: malformed, Code: 400, BodyMatch: `Attempted access with malformed header, auth data not encoded correctly`},
}...)
}
}
func BenchmarkBasicAuth_CacheEnabled(b *testing.B) {
b.ReportAllocs()
ts := newTykTestServer()
defer ts.Close()
session := testPrepareBasicAuth(false)
validPassword := map[string]string{"Authorization": genAuthHeader("user", "password")}
// Create base auth based key
ts.Run(b, test.TestCase{
Method: "POST",
Path: "/tyk/keys/defaultuser",
Data: session,
AdminAuth: true,
Code: 200,
})
for i := 0; i < b.N; i++ {
ts.Run(b, []test.TestCase{
{Method: "GET", Path: "/", Headers: validPassword, Code: 200},
}...)
}
}
func BenchmarkBasicAuth_CacheDisabled(b *testing.B) {
b.ReportAllocs()
ts := newTykTestServer()
defer ts.Close()
session := testPrepareBasicAuth(true)
validPassword := map[string]string{"Authorization": genAuthHeader("user", "password")}
// Create base auth based key
ts.Run(b, test.TestCase{
Method: "POST",
Path: "/tyk/keys/defaultuser",
Data: session,
AdminAuth: true,
Code: 200,
})
for i := 0; i < b.N; i++ {
ts.Run(b, []test.TestCase{
{Method: "GET", Path: "/", Headers: validPassword, Code: 200},
}...)
}
}