forked from jaredhanson/passport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthenticator.middleware.test.js
263 lines (207 loc) · 7.24 KB
/
authenticator.middleware.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
/* global describe, it, expect, before */
/* jshint expr: true */
var chai = require('chai')
, Authenticator = require('../lib/authenticator');
describe('Authenticator', function() {
describe('#initialize', function() {
it('should have correct arity', function() {
var passport = new Authenticator();
expect(passport.initialize).to.have.length(1);
});
describe('handling a request', function() {
var passport = new Authenticator();
var request, error;
before(function(done) {
chai.connect.use(passport.initialize())
.req(function(req) {
request = req;
req.session = {};
})
.next(function(err) {
error = err;
done();
})
.dispatch();
});
it('should not error', function() {
expect(error).to.be.undefined;
});
it('should set user property on authenticator', function() {
expect(passport._userProperty).to.equal('user');
});
it('should not initialize namespace within session', function() {
expect(request.session.passport).to.be.undefined;
});
it('should expose authenticator on internal request property', function() {
expect(request._passport).to.be.an('object');
expect(request._passport.instance).to.be.an.instanceOf(Authenticator);
expect(request._passport.instance).to.equal(passport);
});
it('should not expose session storage on internal request property', function() {
expect(request._passport.session).to.be.undefined;
});
});
describe('handling a request with custom user property', function() {
var passport = new Authenticator();
var request, error;
before(function(done) {
chai.connect.use(passport.initialize({ userProperty: 'currentUser' }))
.req(function(req) {
request = req;
req.session = {};
})
.next(function(err) {
error = err;
done();
})
.dispatch();
});
it('should not error', function() {
expect(error).to.be.undefined;
});
it('should set user property on authenticator', function() {
expect(passport._userProperty).to.equal('currentUser');
});
it('should not initialize namespace within session', function() {
expect(request.session.passport).to.be.undefined;
});
it('should expose authenticator on internal request property', function() {
expect(request._passport).to.be.an('object');
expect(request._passport.instance).to.be.an.instanceOf(Authenticator);
expect(request._passport.instance).to.equal(passport);
});
it('should not expose session storage on internal request property', function() {
expect(request._passport.session).to.be.undefined;
});
});
});
describe('#authenticate', function() {
it('should have correct arity', function() {
var passport = new Authenticator();
expect(passport.authenticate).to.have.length(3);
});
describe('handling a request', function() {
function Strategy() {
}
Strategy.prototype.authenticate = function(req) {
var user = { id: '1', username: 'jaredhanson' };
this.success(user);
};
var passport = new Authenticator();
passport.use('success', new Strategy());
var request, error;
before(function(done) {
chai.connect.use(passport.authenticate('success'))
.req(function(req) {
request = req;
req.logIn = function(user, options, done) {
this.user = user;
done();
};
})
.next(function(err) {
error = err;
done();
})
.dispatch();
});
it('should not error', function() {
expect(error).to.be.undefined;
});
it('should set user', function() {
expect(request.user).to.be.an('object');
expect(request.user.id).to.equal('1');
expect(request.user.username).to.equal('jaredhanson');
});
it('should set authInfo', function() {
expect(request.authInfo).to.be.an('object');
expect(Object.keys(request.authInfo)).to.have.length(0);
});
});
});
describe('#authorize', function() {
it('should have correct arity', function() {
var passport = new Authenticator();
expect(passport.authorize).to.have.length(3);
});
describe('handling a request', function() {
function Strategy() {
}
Strategy.prototype.authenticate = function(req) {
var user = { id: '1', username: 'jaredhanson' };
this.success(user);
};
var passport = new Authenticator();
passport.use('success', new Strategy());
var request, error;
before(function(done) {
chai.connect.use(passport.authorize('success'))
.req(function(req) {
request = req;
req.logIn = function(user, options, done) {
this.user = user;
done();
};
})
.next(function(err) {
error = err;
done();
})
.dispatch();
});
it('should not error', function() {
expect(error).to.be.undefined;
});
it('should not set user', function() {
expect(request.user).to.be.undefined;
});
it('should set account', function() {
expect(request.account).to.be.an('object');
expect(request.account.id).to.equal('1');
expect(request.account.username).to.equal('jaredhanson');
});
it('should not set authInfo', function() {
expect(request.authInfo).to.be.undefined;
});
});
});
describe('#session', function() {
it('should have correct arity', function() {
var passport = new Authenticator();
expect(passport.session).to.have.length(1);
});
describe('handling a request', function() {
var passport = new Authenticator();
var request, error;
before(function(done) {
chai.connect.use(passport.session())
.req(function(req) {
request = req;
req._passport = {};
req._passport.instance = {};
req._passport.instance.deserializeUser = function(user, req, done) {
done(null, { id: user });
};
req._passport.session = {};
req._passport.session.user = '123456';
})
.next(function(err) {
error = err;
done();
})
.dispatch();
});
it('should not error', function() {
expect(error).to.be.undefined;
});
it('should set user', function() {
expect(request.user).to.be.an('object');
expect(request.user.id).to.equal('123456');
});
it('should maintain session', function() {
expect(request._passport.session).to.be.an('object');
expect(request._passport.session.user).to.equal('123456');
});
});
});
});