-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathappSession.tests.js
585 lines (538 loc) · 16.3 KB
/
appSession.tests.js
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
const assert = require('chai').assert;
const crypto = require('crypto');
const request = require('request-promise-native').defaults({
simple: false,
resolveWithFullResponse: true,
});
const sinon = require('sinon');
const appSession = require('../lib/appSession');
const { encrypted } = require('./fixture/sessionEncryption');
const { makeIdToken } = require('./fixture/cert');
const { get: getConfig } = require('../lib/config');
const { create: createServer } = require('./fixture/server');
const defaultConfig = {
clientID: '__test_client_id__',
clientSecret: '__test_client_secret__',
issuerBaseURL: 'https://op.example.com',
baseURL: 'http://example.org',
secret: '__test_secret__',
errorOnRequiredAuth: true,
};
const login = async (claims) => {
const jar = request.jar();
await request.post('/session', {
baseUrl,
jar,
json: {
id_token: makeIdToken(claims),
},
});
return jar;
};
const baseUrl = 'http://localhost:3000';
const HR_MS = 60 * 60 * 1000;
describe('appSession', () => {
let server;
afterEach(() => {
if (server) {
server.close();
}
});
it('should not create a session when there are no cookies', async () => {
server = await createServer(appSession(getConfig(defaultConfig)));
const res = await request.get('/session', { baseUrl, json: true });
assert.isEmpty(res.body);
});
it('should not error for malformed sessions', async () => {
server = await createServer(appSession(getConfig(defaultConfig)));
const res = await request.get('/session', {
baseUrl,
json: true,
headers: {
cookie: 'appSession=__invalid_identity__',
},
});
assert.equal(res.statusCode, 200);
assert.isEmpty(res.body);
});
it('should not error with JWEDecryptionFailed when using old secrets', async () => {
server = await createServer(
appSession(
getConfig({
...defaultConfig,
secret: 'another secret',
})
)
);
const res = await request.get('/session', {
baseUrl,
json: true,
headers: {
cookie: `appSession=${encrypted}`,
},
});
assert.equal(res.statusCode, 200);
assert.isEmpty(res.body);
});
it('should get an existing session', async () => {
server = await createServer(appSession(getConfig(defaultConfig)));
const res = await request.get('/session', {
baseUrl,
json: true,
headers: {
cookie: `appSession=${encrypted}`,
},
});
assert.equal(res.statusCode, 200);
assert.equal(res.body.sub, '__test_sub__');
});
it('should chunk and accept chunked cookies over 4kb', async () => {
server = await createServer(appSession(getConfig(defaultConfig)));
const jar = request.jar();
const random = crypto.randomBytes(4000).toString('base64');
await request.post('/session', {
baseUrl,
jar,
json: {
sub: '__test_sub__',
random,
},
});
assert.deepEqual(
jar.getCookies(baseUrl).map(({ key }) => key),
['appSession.0', 'appSession.1']
);
const res = await request.get('/session', { baseUrl, json: true, jar });
assert.equal(res.statusCode, 200);
assert.deepEqual(res.body, {
sub: '__test_sub__',
random,
});
});
it('should limit total cookie size to 4096 Bytes', async () => {
server = await createServer(appSession(getConfig(defaultConfig)));
const jar = request.jar();
await request.post('session', {
baseUrl,
jar,
json: {
sub: '__test_sub__',
random: crypto.randomBytes(8000).toString('base64'),
},
});
const cookies = jar
.getCookies(baseUrl)
.reduce(
(obj, value) => Object.assign(obj, { [value.key]: value + '' }),
{}
);
assert.exists(cookies);
assert.equal(cookies['appSession.0'].length, 4096);
assert.equal(cookies['appSession.1'].length, 4096);
assert.equal(cookies['appSession.2'].length, 4096);
assert.isTrue(cookies['appSession.3'].length <= 4096);
});
it('should limit total cookie size to 4096 Bytes with custom path', async () => {
const path =
'/some-really-really-really-really-really-really-really-really-really-really-really-really-really-long-path';
server = await createServer(
appSession(getConfig({ ...defaultConfig, session: { cookie: { path } } }))
);
const jar = request.jar();
await request.post('session', {
baseUrl,
jar,
json: {
sub: '__test_sub__',
random: crypto.randomBytes(8000).toString('base64'),
},
});
const cookies = jar
.getCookies(`${baseUrl}${path}`)
.reduce(
(obj, value) => Object.assign(obj, { [value.key]: value + '' }),
{}
);
assert.exists(cookies);
assert.equal(cookies['appSession.0'].length, 4096);
assert.equal(cookies['appSession.1'].length, 4096);
assert.equal(cookies['appSession.2'].length, 4096);
assert.isTrue(cookies['appSession.3'].length <= 4096);
});
it('should clean up single cookie when switching to chunked', async () => {
server = await createServer(appSession(getConfig(defaultConfig)));
const jar = request.jar();
jar.setCookie(`appSession=foo`, baseUrl);
const firstCookies = jar
.getCookies(baseUrl)
.reduce(
(obj, value) => Object.assign(obj, { [value.key]: value + '' }),
{}
);
assert.property(firstCookies, 'appSession');
await request.post('session', {
baseUrl,
jar,
json: {
sub: '__test_sub__',
random: crypto.randomBytes(8000).toString('base64'),
},
});
const cookies = jar
.getCookies(baseUrl)
.reduce(
(obj, value) => Object.assign(obj, { [value.key]: value + '' }),
{}
);
assert.property(cookies, 'appSession.0');
assert.notProperty(cookies, 'appSession');
});
it('should clean up chunked cookies when switching to single cookie', async () => {
server = await createServer(appSession(getConfig(defaultConfig)));
const jar = request.jar();
jar.setCookie(`appSession.0=foo`, baseUrl);
jar.setCookie(`appSession.1=foo`, baseUrl);
const firstCookies = jar
.getCookies(baseUrl)
.reduce(
(obj, value) => Object.assign(obj, { [value.key]: value + '' }),
{}
);
assert.property(firstCookies, 'appSession.0');
assert.property(firstCookies, 'appSession.1');
await request.post('session', {
baseUrl,
jar,
json: {
sub: '__test_sub__',
},
});
const cookies = jar
.getCookies(baseUrl)
.reduce(
(obj, value) => Object.assign(obj, { [value.key]: value + '' }),
{}
);
assert.property(cookies, 'appSession');
assert.notProperty(cookies, 'appSession.0');
});
it('should handle unordered chunked cookies', async () => {
server = await createServer(appSession(getConfig(defaultConfig)));
const jar = request.jar();
const random = crypto.randomBytes(4000).toString('base64');
await request.post('/session', {
baseUrl,
jar,
json: {
sub: '__test_sub__',
random,
},
});
const newJar = request.jar();
jar
.getCookies(baseUrl)
.reverse()
.forEach(({ key, value }) =>
newJar.setCookie(`${key}=${value}`, baseUrl)
);
assert.deepEqual(
newJar.getCookies(baseUrl).map(({ key }) => key),
['appSession.1', 'appSession.0']
);
const res = await request.get('/session', {
baseUrl,
json: true,
jar: newJar,
});
assert.equal(res.statusCode, 200);
assert.deepEqual(res.body, {
sub: '__test_sub__',
random,
});
});
it('should not throw for malformed cookie chunks', async () => {
server = await createServer(appSession(getConfig(defaultConfig)));
const jar = request.jar();
jar.setCookie('appSession.0=foo', baseUrl);
jar.setCookie('appSession.1=bar', baseUrl);
const res = await request.get('/session', { baseUrl, json: true, jar });
assert.equal(res.statusCode, 200);
});
it('should set the default cookie options over http', async () => {
server = await createServer(
appSession(getConfig({ ...defaultConfig, baseURL: 'http://example.org' }))
);
const jar = request.jar();
await request.get('/session', {
baseUrl,
json: true,
jar,
headers: {
cookie: `appSession=${encrypted}`,
},
});
const [cookie] = jar.getCookies(baseUrl);
assert.deepInclude(cookie, {
key: 'appSession',
domain: 'localhost',
path: '/',
httpOnly: true,
extensions: ['SameSite=Lax'],
});
const expDate = new Date(cookie.expires);
const now = Date.now();
assert.approximately(Math.floor((expDate - now) / 1000), 86400, 5);
});
it('should set the default cookie options over https', async () => {
server = await createServer(
appSession(
getConfig({ ...defaultConfig, baseURL: 'https://example.org' })
)
);
const jar = request.jar();
await request.get('/session', {
baseUrl,
json: true,
jar,
headers: {
cookie: `appSession=${encrypted}`,
},
});
// Secure cookies not set over http
assert.isEmpty(jar.getCookies(baseUrl));
});
it('should set the custom cookie options', async () => {
server = await createServer(
appSession(
getConfig({
...defaultConfig,
session: {
cookie: {
httpOnly: false,
sameSite: 'Strict',
},
},
})
)
);
const jar = request.jar();
await request.get('/session', {
baseUrl,
json: true,
jar,
headers: {
cookie: `appSession=${encrypted}`,
},
});
const [cookie] = jar.getCookies(baseUrl);
assert.deepInclude(cookie, {
key: 'appSession',
httpOnly: false,
extensions: ['SameSite=Strict'],
});
});
it('should disregard custom id generation without a custom store', async () => {
server = await createServer(
appSession(
getConfig({
...defaultConfig,
session: {
genid: () => {
throw 'this should not be called';
}, //consider using chai-spies
},
})
)
);
const jar = request.jar();
const res = await request.get('/session', {
baseUrl,
json: true,
jar,
headers: {
cookie: `appSession=${encrypted}`,
},
});
assert.equal(res.statusCode, 200);
assert.equal(res.body.sub, '__test_sub__');
});
it('should use a custom cookie name', async () => {
server = await createServer(
appSession(
getConfig({
...defaultConfig,
session: { name: 'customName' },
})
)
);
const jar = request.jar();
const res = await request.get('/session', {
baseUrl,
json: true,
jar,
headers: {
cookie: `customName=${encrypted}`,
},
});
const [cookie] = jar.getCookies(baseUrl);
assert.equal(res.statusCode, 200);
assert.equal(cookie.key, 'customName');
});
it('should set an ephemeral cookie', async () => {
server = await createServer(
appSession(
getConfig({
...defaultConfig,
session: { cookie: { transient: true } },
})
)
);
const jar = request.jar();
const res = await request.get('/session', {
baseUrl,
json: true,
jar,
headers: {
cookie: `appSession=${encrypted}`,
},
});
const [cookie] = jar.getCookies(baseUrl);
assert.equal(res.statusCode, 200);
assert.isFalse(cookie.hasOwnProperty('expires'));
});
it('should not throw for expired cookies', async () => {
const twoWeeks = 2 * 7 * 24 * 60 * 60 * 1000;
const clock = sinon.useFakeTimers({
now: Date.now(),
toFake: ['Date'],
});
server = await createServer(appSession(getConfig(defaultConfig)));
const jar = request.jar();
clock.tick(twoWeeks);
const res = await request.get('/session', {
baseUrl,
json: true,
jar,
headers: {
cookie: `appSession=${encrypted}`,
},
});
assert.equal(res.statusCode, 200);
clock.restore();
});
it('should throw for duplicate mw', async () => {
server = await createServer((req, res, next) => {
req.appSession = {};
appSession(getConfig(defaultConfig))(req, res, next);
});
const res = await request.get('/session', { baseUrl, json: true });
assert.equal(res.statusCode, 500);
assert.equal(
res.body.err.message,
'req[appSession] is already set, did you run this middleware twice?'
);
});
it('should throw for reassigning session', async () => {
server = await createServer((req, res, next) => {
appSession(getConfig(defaultConfig))(req, res, () => {
try {
req.appSession = {};
next();
} catch (e) {
next(e);
}
});
});
const res = await request.get('/session', { baseUrl, json: true });
assert.equal(res.statusCode, 500);
assert.equal(res.body.err.message, 'session object cannot be reassigned');
});
it('should not throw for reassigining session to empty', async () => {
server = await createServer((req, res, next) => {
appSession(getConfig(defaultConfig))(req, res, () => {
req.appSession = null;
req.appSession = undefined;
next();
});
});
const res = await request.get('/session', { baseUrl, json: true });
assert.equal(res.statusCode, 200);
});
it('should expire after 24hrs of inactivity by default', async () => {
const clock = sinon.useFakeTimers({ toFake: ['Date'] });
server = await createServer(appSession(getConfig(defaultConfig)));
const jar = await login({ sub: '__test_sub__' });
let res = await request.get('/session', { baseUrl, jar, json: true });
assert.isNotEmpty(res.body);
clock.tick(23 * HR_MS);
res = await request.get('/session', { baseUrl, jar, json: true });
assert.isNotEmpty(res.body);
clock.tick(25 * HR_MS);
res = await request.get('/session', { baseUrl, jar, json: true });
assert.isEmpty(res.body);
clock.restore();
});
it('should expire after 7days regardless of activity by default', async () => {
const clock = sinon.useFakeTimers({ toFake: ['Date'] });
server = await createServer(appSession(getConfig(defaultConfig)));
const jar = await login({ sub: '__test_sub__' });
let days = 7;
while (days--) {
clock.tick(23 * HR_MS);
let res = await request.get('/session', { baseUrl, jar, json: true });
assert.isNotEmpty(res.body);
}
clock.tick(8 * HR_MS);
let res = await request.get('/session', { baseUrl, jar, json: true });
assert.isEmpty(res.body);
clock.restore();
});
it('should expire only after defined absoluteDuration', async () => {
const clock = sinon.useFakeTimers({ toFake: ['Date'] });
server = await createServer(
appSession(
getConfig({
...defaultConfig,
session: {
rolling: false,
absoluteDuration: 10 * 60 * 60,
},
})
)
);
const jar = await login({ sub: '__test_sub__' });
clock.tick(9 * HR_MS);
let res = await request.get('/session', { baseUrl, jar, json: true });
assert.isNotEmpty(res.body);
clock.tick(2 * HR_MS);
res = await request.get('/session', { baseUrl, jar, json: true });
assert.isEmpty(res.body);
clock.restore();
});
it('should expire only after defined rollingDuration period of inactivty', async () => {
const clock = sinon.useFakeTimers({ toFake: ['Date'] });
server = await createServer(
appSession(
getConfig({
...defaultConfig,
session: {
rolling: true,
rollingDuration: 24 * 60 * 60,
absoluteDuration: false,
},
})
)
);
const jar = await login({ sub: '__test_sub__' });
let days = 30;
while (days--) {
clock.tick(23 * HR_MS);
let res = await request.get('/session', { baseUrl, jar, json: true });
assert.isNotEmpty(res.body);
}
clock.tick(25 * HR_MS);
let res = await request.get('/session', { baseUrl, jar, json: true });
assert.isEmpty(res.body);
clock.restore();
});
});