forked from node-oauth/node-oauth2-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthenticate-handler_test.js
614 lines (518 loc) · 21 KB
/
authenticate-handler_test.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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
'use strict';
/**
* Module dependencies.
*/
const AccessDeniedError = require('../../../lib/errors/access-denied-error');
const AuthenticateHandler = require('../../../lib/handlers/authenticate-handler');
const InvalidArgumentError = require('../../../lib/errors/invalid-argument-error');
const InvalidRequestError = require('../../../lib/errors/invalid-request-error');
const InsufficientScopeError = require('../../../lib/errors/insufficient-scope-error');
const InvalidTokenError = require('../../../lib/errors/invalid-token-error');
const Promise = require('bluebird');
const Request = require('../../../lib/request');
const Response = require('../../../lib/response');
const ServerError = require('../../../lib/errors/server-error');
const UnauthorizedRequestError = require('../../../lib/errors/unauthorized-request-error');
const should = require('chai').should();
/**
* Test `AuthenticateHandler` integration.
*/
describe('AuthenticateHandler integration', function() {
describe('constructor()', function() {
it('should throw an error if `options.model` is missing', function() {
try {
new AuthenticateHandler();
should.fail();
} catch (e) {
e.should.be.an.instanceOf(InvalidArgumentError);
e.message.should.equal('Missing parameter: `model`');
}
});
it('should throw an error if the model does not implement `getAccessToken()`', function() {
try {
new AuthenticateHandler({ model: {} });
should.fail();
} catch (e) {
e.should.be.an.instanceOf(InvalidArgumentError);
e.message.should.equal('Invalid argument: model does not implement `getAccessToken()`');
}
});
it('should throw an error if `scope` was given and `addAcceptedScopesHeader()` is missing', function() {
try {
new AuthenticateHandler({ model: { getAccessToken: function() {} }, scope: 'foobar' });
should.fail();
} catch (e) {
e.should.be.an.instanceOf(InvalidArgumentError);
e.message.should.equal('Missing parameter: `addAcceptedScopesHeader`');
}
});
it('should throw an error if `scope` was given and `addAuthorizedScopesHeader()` is missing', function() {
try {
new AuthenticateHandler({ addAcceptedScopesHeader: true, model: { getAccessToken: function() {} }, scope: 'foobar' });
should.fail();
} catch (e) {
e.should.be.an.instanceOf(InvalidArgumentError);
e.message.should.equal('Missing parameter: `addAuthorizedScopesHeader`');
}
});
it('should throw an error if `scope` was given and the model does not implement `verifyScope()`', function() {
try {
new AuthenticateHandler({ addAcceptedScopesHeader: true, addAuthorizedScopesHeader: true, model: { getAccessToken: function() {} }, scope: 'foobar' });
should.fail();
} catch (e) {
e.should.be.an.instanceOf(InvalidArgumentError);
e.message.should.equal('Invalid argument: model does not implement `verifyScope()`');
}
});
it('should set the `model`', function() {
const model = { getAccessToken: function() {} };
const grantType = new AuthenticateHandler({ model: model });
grantType.model.should.equal(model);
});
it('should set the `scope`', function() {
const model = {
getAccessToken: function() {},
verifyScope: function() {}
};
const grantType = new AuthenticateHandler({
addAcceptedScopesHeader: true,
addAuthorizedScopesHeader: true,
model: model,
scope: 'foobar'
});
grantType.scope.should.equal('foobar');
});
});
describe('handle()', function() {
it('should throw an error if `request` is missing', function() {
const handler = new AuthenticateHandler({ model: { getAccessToken: function() {} } });
try {
handler.handle();
should.fail();
} catch (e) {
e.should.be.an.instanceOf(InvalidArgumentError);
e.message.should.equal('Invalid argument: `request` must be an instance of Request');
}
});
it('should set the `WWW-Authenticate` header if an unauthorized request error is thrown', function() {
const model = {
getAccessToken: function() {
throw new UnauthorizedRequestError();
}
};
const handler = new AuthenticateHandler({ model: model });
const request = new Request({ body: {}, headers: { 'Authorization': 'Bearer foo' }, method: {}, query: {} });
const response = new Response({ body: {}, headers: {} });
return handler.handle(request, response)
.then(should.fail)
.catch(function() {
response.get('WWW-Authenticate').should.equal('Bearer realm="Service"');
});
});
it('should set the `WWW-Authenticate` header if an InvalidRequestError is thrown', function() {
const model = {
getAccessToken: function() {
throw new InvalidRequestError();
}
};
const handler = new AuthenticateHandler({ model: model });
const request = new Request({ body: {}, headers: { 'Authorization': 'Bearer foo' }, method: {}, query: {} });
const response = new Response({ body: {}, headers: {} });
return handler.handle(request, response)
.then(should.fail)
.catch(function() {
response.get('WWW-Authenticate').should.equal('Bearer realm="Service",error="invalid_request"');
});
});
it('should set the `WWW-Authenticate` header if an InvalidTokenError is thrown', function() {
const model = {
getAccessToken: function() {
throw new InvalidTokenError();
}
};
const handler = new AuthenticateHandler({ model: model });
const request = new Request({ body: {}, headers: { 'Authorization': 'Bearer foo' }, method: {}, query: {} });
const response = new Response({ body: {}, headers: {} });
return handler.handle(request, response)
.then(should.fail)
.catch(function() {
response.get('WWW-Authenticate').should.equal('Bearer realm="Service",error="invalid_token"');
});
});
it('should set the `WWW-Authenticate` header if an InsufficientScopeError is thrown', function() {
const model = {
getAccessToken: function() {
throw new InsufficientScopeError();
}
};
const handler = new AuthenticateHandler({ model: model });
const request = new Request({ body: {}, headers: { 'Authorization': 'Bearer foo' }, method: {}, query: {} });
const response = new Response({ body: {}, headers: {} });
return handler.handle(request, response)
.then(should.fail)
.catch(function() {
response.get('WWW-Authenticate').should.equal('Bearer realm="Service",error="insufficient_scope"');
});
});
it('should throw the error if an oauth error is thrown', function() {
const model = {
getAccessToken: function() {
throw new AccessDeniedError('Cannot request this access token');
}
};
const handler = new AuthenticateHandler({ model: model });
const request = new Request({ body: {}, headers: { 'Authorization': 'Bearer foo' }, method: {}, query: {} });
const response = new Response({ body: {}, headers: {} });
return handler.handle(request, response)
.then(should.fail)
.catch(function(e) {
e.should.be.an.instanceOf(AccessDeniedError);
e.message.should.equal('Cannot request this access token');
});
});
it('should throw a server error if a non-oauth error is thrown', function() {
const model = {
getAccessToken: function() {
throw new Error('Unhandled exception');
}
};
const handler = new AuthenticateHandler({ model: model });
const request = new Request({ body: {}, headers: { 'Authorization': 'Bearer foo' }, method: {}, query: {} });
const response = new Response({ body: {}, headers: {} });
return handler.handle(request, response)
.then(should.fail)
.catch(function(e) {
e.should.be.an.instanceOf(ServerError);
e.message.should.equal('Unhandled exception');
});
});
it('should return an access token', function() {
const accessToken = {
user: {},
accessTokenExpiresAt: new Date(new Date().getTime() + 10000)
};
const model = {
getAccessToken: function() {
return accessToken;
},
verifyScope: function() {
return true;
}
};
const handler = new AuthenticateHandler({ addAcceptedScopesHeader: true, addAuthorizedScopesHeader: true, model: model, scope: 'foo' });
const request = new Request({
body: {},
headers: { 'Authorization': 'Bearer foo' },
method: {},
query: {}
});
const response = new Response({ body: {}, headers: {} });
return handler.handle(request, response)
.then(function(data) {
data.should.equal(accessToken);
})
.catch(should.fail);
});
});
describe('getTokenFromRequest()', function() {
it('should throw an error if more than one authentication method is used', function() {
const handler = new AuthenticateHandler({ model: { getAccessToken: function() {} } });
const request = new Request({
body: {},
headers: { 'Authorization': 'Bearer foo' },
method: {},
query: { access_token: 'foo' }
});
try {
handler.getTokenFromRequest(request);
should.fail();
} catch (e) {
e.should.be.an.instanceOf(InvalidRequestError);
e.message.should.equal('Invalid request: only one authentication method is allowed');
}
});
it('should throw an error if `accessToken` is missing', function() {
const handler = new AuthenticateHandler({ model: { getAccessToken: function() {} } });
const request = new Request({ body: {}, headers: {}, method: {}, query: {} });
try {
handler.getTokenFromRequest(request);
should.fail();
} catch (e) {
e.should.be.an.instanceOf(UnauthorizedRequestError);
e.message.should.equal('Unauthorized request: no authentication given');
}
});
});
describe('getTokenFromRequestHeader()', function() {
it('should throw an error if the token is malformed', function() {
const handler = new AuthenticateHandler({ model: { getAccessToken: function() {} } });
const request = new Request({
body: {},
headers: {
'Authorization': 'foobar'
},
method: {},
query: {}
});
try {
handler.getTokenFromRequestHeader(request);
should.fail();
} catch (e) {
e.should.be.an.instanceOf(InvalidRequestError);
e.message.should.equal('Invalid request: malformed authorization header');
}
});
it('should return the bearer token', function() {
const handler = new AuthenticateHandler({ model: { getAccessToken: function() {} } });
const request = new Request({
body: {},
headers: {
'Authorization': 'Bearer foo'
},
method: {},
query: {}
});
const bearerToken = handler.getTokenFromRequestHeader(request);
bearerToken.should.equal('foo');
});
});
describe('getTokenFromRequestQuery()', function() {
it('should throw an error if the query contains a token', function() {
const handler = new AuthenticateHandler({ model: { getAccessToken: function() {} } });
try {
handler.getTokenFromRequestQuery();
should.fail();
} catch (e) {
e.should.be.an.instanceOf(InvalidRequestError);
e.message.should.equal('Invalid request: do not send bearer tokens in query URLs');
}
});
it('should return the bearer token if `allowBearerTokensInQueryString` is true', function() {
const handler = new AuthenticateHandler({ allowBearerTokensInQueryString: true, model: { getAccessToken: function() {} } });
handler.getTokenFromRequestQuery({ query: { access_token: 'foo' } }).should.equal('foo');
});
});
describe('getTokenFromRequestBody()', function() {
it('should throw an error if the method is `GET`', function() {
const handler = new AuthenticateHandler({ model: { getAccessToken: function() {} } });
const request = new Request({
body: { access_token: 'foo' },
headers: {},
method: 'GET',
query: {}
});
try {
handler.getTokenFromRequestBody(request);
should.fail();
} catch (e) {
e.should.be.an.instanceOf(InvalidRequestError);
e.message.should.equal('Invalid request: token may not be passed in the body when using the GET verb');
}
});
it('should throw an error if the media type is not `application/x-www-form-urlencoded`', function() {
const handler = new AuthenticateHandler({ model: { getAccessToken: function() {} } });
const request = new Request({
body: { access_token: 'foo' },
headers: {},
method: {},
query: {}
});
try {
handler.getTokenFromRequestBody(request);
should.fail();
} catch (e) {
e.should.be.an.instanceOf(InvalidRequestError);
e.message.should.equal('Invalid request: content must be application/x-www-form-urlencoded');
}
});
it('should return the bearer token', function() {
const handler = new AuthenticateHandler({ model: { getAccessToken: function() {} } });
const request = new Request({
body: { access_token: 'foo' },
headers: { 'content-type': 'application/x-www-form-urlencoded', 'transfer-encoding': 'chunked' },
method: {},
query: {}
});
handler.getTokenFromRequestBody(request).should.equal('foo');
});
});
describe('getAccessToken()', function() {
it('should throw an error if `accessToken` is missing', function() {
const model = {
getAccessToken: function() {}
};
const handler = new AuthenticateHandler({ model: model });
return handler.getAccessToken('foo')
.then(should.fail)
.catch(function(e) {
e.should.be.an.instanceOf(InvalidTokenError);
e.message.should.equal('Invalid token: access token is invalid');
});
});
it('should throw an error if `accessToken.user` is missing', function() {
const model = {
getAccessToken: function() {
return {};
}
};
const handler = new AuthenticateHandler({ model: model });
return handler.getAccessToken('foo')
.then(should.fail)
.catch(function(e) {
e.should.be.an.instanceOf(ServerError);
e.message.should.equal('Server error: `getAccessToken()` did not return a `user` object');
});
});
it('should return an access token', function() {
const accessToken = { user: {} };
const model = {
getAccessToken: function() {
return accessToken;
}
};
const handler = new AuthenticateHandler({ model: model });
return handler.getAccessToken('foo')
.then(function(data) {
data.should.equal(accessToken);
})
.catch(should.fail);
});
it('should support promises', function() {
const model = {
getAccessToken: function() {
return Promise.resolve({ user: {} });
}
};
const handler = new AuthenticateHandler({ model: model });
handler.getAccessToken('foo').should.be.an.instanceOf(Promise);
});
it('should support non-promises', function() {
const model = {
getAccessToken: function() {
return { user: {} };
}
};
const handler = new AuthenticateHandler({ model: model });
handler.getAccessToken('foo').should.be.an.instanceOf(Promise);
});
it('should support callbacks', function() {
const model = {
getAccessToken: function(token, callback) {
callback(null, { user: {} });
}
};
const handler = new AuthenticateHandler({ model: model });
handler.getAccessToken('foo').should.be.an.instanceOf(Promise);
});
});
describe('validateAccessToken()', function() {
it('should throw an error if `accessToken` is expired', function() {
const accessToken = { accessTokenExpiresAt: new Date(new Date() / 2) };
const handler = new AuthenticateHandler({ model: { getAccessToken: function() {} } });
try {
handler.validateAccessToken(accessToken);
should.fail();
} catch (e) {
e.should.be.an.instanceOf(InvalidTokenError);
e.message.should.equal('Invalid token: access token has expired');
}
});
it('should return an access token', function() {
const accessToken = {
user: {},
accessTokenExpiresAt: new Date(new Date().getTime() + 10000)
};
const handler = new AuthenticateHandler({ model: { getAccessToken: function() {} } });
handler.validateAccessToken(accessToken).should.equal(accessToken);
});
});
describe('verifyScope()', function() {
it('should throw an error if `scope` is insufficient', function() {
const model = {
getAccessToken: function() {},
verifyScope: function() {
return false;
}
};
const handler = new AuthenticateHandler({ addAcceptedScopesHeader: true, addAuthorizedScopesHeader: true, model: model, scope: 'foo' });
return handler.verifyScope('foo')
.then(should.fail)
.catch(function(e) {
e.should.be.an.instanceOf(InsufficientScopeError);
e.message.should.equal('Insufficient scope: authorized scope is insufficient');
});
});
it('should support promises', function() {
const model = {
getAccessToken: function() {},
verifyScope: function() {
return true;
}
};
const handler = new AuthenticateHandler({ addAcceptedScopesHeader: true, addAuthorizedScopesHeader: true, model: model, scope: 'foo' });
handler.verifyScope('foo').should.be.an.instanceOf(Promise);
});
it('should support non-promises', function() {
const model = {
getAccessToken: function() {},
verifyScope: function() {
return true;
}
};
const handler = new AuthenticateHandler({ addAcceptedScopesHeader: true, addAuthorizedScopesHeader: true, model: model, scope: 'foo' });
handler.verifyScope('foo').should.be.an.instanceOf(Promise);
});
it('should support callbacks', function() {
const model = {
getAccessToken: function() {},
verifyScope: function(token, scope, callback) {
callback(null, true);
}
};
const handler = new AuthenticateHandler({ addAcceptedScopesHeader: true, addAuthorizedScopesHeader: true, model: model, scope: 'foo' });
handler.verifyScope('foo').should.be.an.instanceOf(Promise);
});
});
describe('updateResponse()', function() {
it('should not set the `X-Accepted-OAuth-Scopes` header if `scope` is not specified', function() {
const model = {
getAccessToken: function() {},
verifyScope: function() {}
};
const handler = new AuthenticateHandler({ addAcceptedScopesHeader: true, addAuthorizedScopesHeader: false, model: model });
const response = new Response({ body: {}, headers: {} });
handler.updateResponse(response, { scope: 'foo biz' });
response.headers.should.not.have.property('x-accepted-oauth-scopes');
});
it('should set the `X-Accepted-OAuth-Scopes` header if `scope` is specified', function() {
const model = {
getAccessToken: function() {},
verifyScope: function() {}
};
const handler = new AuthenticateHandler({ addAcceptedScopesHeader: true, addAuthorizedScopesHeader: false, model: model, scope: 'foo bar' });
const response = new Response({ body: {}, headers: {} });
handler.updateResponse(response, { scope: 'foo biz' });
response.get('X-Accepted-OAuth-Scopes').should.equal('foo bar');
});
it('should not set the `X-Authorized-OAuth-Scopes` header if `scope` is not specified', function() {
const model = {
getAccessToken: function() {},
verifyScope: function() {}
};
const handler = new AuthenticateHandler({ addAcceptedScopesHeader: false, addAuthorizedScopesHeader: true, model: model });
const response = new Response({ body: {}, headers: {} });
handler.updateResponse(response, { scope: 'foo biz' });
response.headers.should.not.have.property('x-oauth-scopes');
});
it('should set the `X-Authorized-OAuth-Scopes` header', function() {
const model = {
getAccessToken: function() {},
verifyScope: function() {}
};
const handler = new AuthenticateHandler({ addAcceptedScopesHeader: false, addAuthorizedScopesHeader: true, model: model, scope: 'foo bar' });
const response = new Response({ body: {}, headers: {} });
handler.updateResponse(response, { scope: 'foo biz' });
response.get('X-OAuth-Scopes').should.equal('foo biz');
});
});
});