forked from dschenkelman/auth0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkey_cacher_test.go
429 lines (417 loc) · 11.4 KB
/
key_cacher_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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
package auth0
import (
"strconv"
"strings"
"testing"
"time"
"github.com/stretchr/testify/assert"
"gopkg.in/square/go-jose.v2"
)
func TestGet(t *testing.T) {
tests := []struct {
name string
mkc *memoryKeyCacher
key string
expectedErrorMsg string
}{
{
name: "pass - persistent cacher",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: MaxKeyAgeNoCheck,
maxCacheSize: MaxCacheSizeNoCheck,
},
key: "key1",
expectedErrorMsg: "",
},
{
name: "fail - invalid key",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: MaxKeyAgeNoCheck,
maxCacheSize: MaxCacheSizeNoCheck,
},
key: "invalid key",
expectedErrorMsg: "no Keys has been found",
},
{
name: "fail - persistent cacher get immediately expired key",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(0),
maxCacheSize: MaxCacheSizeNoCheck,
},
key: "key1",
expectedErrorMsg: "key exists but is expired",
},
{
name: "pass - persistent cacher get not expired key",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(10) * time.Second,
maxCacheSize: MaxCacheSizeNoCheck,
},
key: "key1",
expectedErrorMsg: "",
},
{
name: "fail - no cacher with -1 maxKeyAge",
mkc: &memoryKeyCacher{
entries: nil,
maxKeyAge: MaxKeyAgeNoCheck,
maxCacheSize: 0,
},
key: "key1",
expectedErrorMsg: "no Keys has been found",
},
{
name: "fail - no cacher",
mkc: &memoryKeyCacher{
entries: nil,
maxKeyAge: time.Duration(0),
maxCacheSize: 0,
},
key: "key1",
expectedErrorMsg: "no Keys has been found",
},
{
name: "fail - no cacher with 10sec max age",
mkc: &memoryKeyCacher{
entries: nil,
maxKeyAge: time.Duration(10) * time.Second,
maxCacheSize: 0,
},
key: "key1",
expectedErrorMsg: "no Keys has been found",
},
{
name: "pass - custom cacher with -1 max age",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: MaxKeyAgeNoCheck,
maxCacheSize: 1,
},
key: "key1",
expectedErrorMsg: "",
},
{
name: "fail - custom cacher get immediately expired key",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(0),
maxCacheSize: 1,
},
key: "key1",
expectedErrorMsg: "key exists but is expired",
},
{
name: "pass - custom cacher not expired",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(100) * time.Second,
maxCacheSize: 1,
},
key: "key1",
expectedErrorMsg: "",
},
{
name: "fail - custom cacher with expired key",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(-100) * time.Second, // setting max age negavtive time duration is equivalent to expired keys
maxCacheSize: 1,
},
key: "key1",
expectedErrorMsg: "key exists but is expired",
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
if test.mkc.entries != nil {
test.mkc.entries["key1"] = keyCacherEntry{time.Now(), jose.JSONWebKey{KeyID: "test1"}}
}
_, err := test.mkc.Get(test.key)
if test.expectedErrorMsg != "" {
if err == nil {
t.Errorf("Validation should have failed with error with substring: " + test.expectedErrorMsg)
} else if !strings.Contains(err.Error(), test.expectedErrorMsg) {
t.Errorf("Validation should have failed with error with substring: " + test.expectedErrorMsg + ", but got: " + err.Error())
}
} else {
if err != nil {
t.Errorf("Validation should not have failed with error, but got: " + err.Error())
}
}
})
}
}
func TestAdd(t *testing.T) {
downloadedKeys := []jose.JSONWebKey{
{Key: jose.JSONWebKey{}, KeyID: "test1"},
{Key: jose.JSONWebKey{}, KeyID: "test2"},
{Key: jose.JSONWebKey{}, KeyID: "test3"},
}
tests := []struct {
name string
mkc *memoryKeyCacher
addingKey string
gettingKey string
expectedFoundKey bool
expectedErrorMsg string
}{
{
name: "pass - persistent cacher",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: MaxKeyAgeNoCheck,
maxCacheSize: MaxCacheSizeNoCheck,
},
addingKey: "test1",
gettingKey: "test1",
expectedFoundKey: true,
expectedErrorMsg: "",
},
{
name: "fail - invalid key",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: MaxKeyAgeNoCheck,
maxCacheSize: MaxCacheSizeNoCheck,
},
addingKey: "invalid key",
gettingKey: "invalid key",
expectedFoundKey: false,
expectedErrorMsg: "no Keys has been found",
},
{
name: "pass - add key for persistent cacher",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(0),
maxCacheSize: MaxCacheSizeNoCheck,
},
addingKey: "test1",
gettingKey: "test1",
expectedFoundKey: true,
expectedErrorMsg: "",
},
{
name: "pass - add key for persistent cacher",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(10) * time.Second,
maxCacheSize: MaxCacheSizeNoCheck,
},
addingKey: "test1",
gettingKey: "test1",
expectedFoundKey: true,
expectedErrorMsg: "",
},
{
name: "fail - no cacher with -1 max age",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: MaxKeyAgeNoCheck,
maxCacheSize: 0,
},
addingKey: "test1",
gettingKey: "test1",
expectedFoundKey: false,
expectedErrorMsg: "",
},
{
name: "fail - no cacher",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(0),
maxCacheSize: 0,
},
addingKey: "test1",
gettingKey: "test1",
expectedFoundKey: false,
expectedErrorMsg: "",
},
{
name: "fail - no cacher with 10sec max age",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(10) * time.Second,
maxCacheSize: 0,
},
addingKey: "test1",
gettingKey: "test1",
expectedFoundKey: false,
expectedErrorMsg: "",
},
{
name: "pass - custom cacher with -1 max age",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: MaxKeyAgeNoCheck,
maxCacheSize: 1,
},
addingKey: "test1",
gettingKey: "test1",
expectedFoundKey: true,
expectedErrorMsg: "",
},
{
name: "pass - custom cacher with 0 max age",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(0),
maxCacheSize: 1,
},
addingKey: "test1",
gettingKey: "test1",
expectedFoundKey: true,
expectedErrorMsg: "",
},
{
name: "pass - custom cacher get latest added key",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(100) * time.Second,
maxCacheSize: 1,
},
gettingKey: "test3",
expectedFoundKey: true,
expectedErrorMsg: "",
},
{
name: "fail - custom cacher add invalid key",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(100) * time.Second,
maxCacheSize: 1,
},
addingKey: "invalid key",
gettingKey: "test1",
expectedFoundKey: false,
expectedErrorMsg: "no Keys has been found",
},
{
name: "fail - custom cacher get key not in cache",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(100) * time.Second,
maxCacheSize: 1,
},
gettingKey: "test1",
expectedFoundKey: false,
expectedErrorMsg: "",
},
{
name: "pass - custom cacher with capacity 3",
mkc: &memoryKeyCacher{
entries: make(map[string]keyCacherEntry),
maxKeyAge: time.Duration(100) * time.Second,
maxCacheSize: 3,
},
gettingKey: "test2",
expectedFoundKey: true,
expectedErrorMsg: "",
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
var err error
if test.addingKey == "" {
for i := 0; i < 3; i++ {
_, err = test.mkc.Add(downloadedKeys[i].KeyID, downloadedKeys)
}
} else {
_, err = test.mkc.Add(test.addingKey, downloadedKeys)
}
_, ok := test.mkc.entries[test.gettingKey]
assert.Equal(t, test.expectedFoundKey, ok)
if test.expectedErrorMsg != "" {
if err == nil {
t.Errorf("Validation should have failed with error with substring: " + test.expectedErrorMsg)
} else if !strings.Contains(err.Error(), test.expectedErrorMsg) {
t.Errorf("Validation should have failed with error with substring: " + test.expectedErrorMsg + ", but got: " + err.Error())
}
} else {
if err != nil {
t.Errorf("Validation should not have failed with error, but got: " + err.Error())
}
}
})
}
}
func TestKeyIsExpired(t *testing.T) {
tests := []struct {
name string
mkc *memoryKeyCacher
sleepingTime int
expectedBool bool
}{
{
name: "true - key is expired",
mkc: &memoryKeyCacher{
entries: map[string]keyCacherEntry{},
maxKeyAge: time.Duration(1) * time.Second,
maxCacheSize: 1,
},
expectedBool: true,
},
{
name: "false - key not expired",
mkc: &memoryKeyCacher{
entries: map[string]keyCacherEntry{},
maxKeyAge: time.Duration(10) * time.Second,
maxCacheSize: 1,
},
expectedBool: false,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
if test.expectedBool {
test.mkc.entries["test1"] = keyCacherEntry{time.Now().Add(time.Duration(-10) * time.Second), jose.JSONWebKey{KeyID: "test1"}}
} else {
test.mkc.entries["test1"] = keyCacherEntry{time.Now(), jose.JSONWebKey{KeyID: "test1"}}
}
if test.mkc.keyIsExpired("test1") != test.expectedBool {
t.Errorf("Should have been " + strconv.FormatBool(test.expectedBool) + " but got different")
}
})
}
}
func TestHandleOverflow(t *testing.T) {
downloadedKeys := []jose.JSONWebKey{{KeyID: "test1"}, {KeyID: "test2"}, {KeyID: "test3"}}
tests := []struct {
name string
mkc *memoryKeyCacher
expectedLength int
}{
{
name: "true - overflowed and delete 1 key",
mkc: &memoryKeyCacher{
entries: map[string]keyCacherEntry{},
maxKeyAge: time.Duration(2) * time.Second,
maxCacheSize: 1,
},
expectedLength: 1,
},
{
name: "false - no overflow",
mkc: &memoryKeyCacher{
entries: map[string]keyCacherEntry{},
maxKeyAge: time.Duration(2) * time.Second,
maxCacheSize: 2,
},
expectedLength: 2,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
test.mkc.entries["first"] = keyCacherEntry{JSONWebKey: downloadedKeys[0]}
test.mkc.entries["second"] = keyCacherEntry{JSONWebKey: downloadedKeys[1]}
test.mkc.handleOverflow()
if len(test.mkc.entries) != test.expectedLength {
t.Errorf("Should have been " + strconv.Itoa(test.expectedLength) + "but got different")
}
})
}
}