-
Notifications
You must be signed in to change notification settings - Fork 9
/
api.password-reset.js
289 lines (252 loc) · 12.5 KB
/
api.password-reset.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
const should = require('should');
const flow = require('nimble');
const httpStatus = require('http-status');
const superagent = require('superagent-ls');
const requireNew = require('require-new');
const wipe = require('./fixture-helpers/wipe');
const setup = require('./fixture-helpers/setup');
const config = require('../config');
const ESDR_API_ROOT_URL = config.get("esdr:apiRootUrl");
const ESDR_PASSWORD_RESET_API_URL = ESDR_API_ROOT_URL + "/password-reset";
describe("REST API", function() {
const client1 = requireNew('./fixtures/client1.json');
const user1 = requireNew('./fixtures/user1.json');
const newPassword = "this is the new password";
before(function(initDone) {
flow.series(
[
wipe.wipeAllData,
function(done) {
setup.createClient(client1, done);
},
function(done) {
setup.createUser(user1, done);
}
],
initDone
);
});
describe("Password Reset", function() {
const testRequestPasswordResetToken = function(test) {
const client = test.client || client1;
it(test.description, function(done) {
superagent
.post(ESDR_PASSWORD_RESET_API_URL)
.auth(client.clientName, client.clientSecret)
.send({ email : test.email })
.end(function(err, res) {
should.not.exist(err);
should.exist(res);
res.should.have.property('status', test.expectedHttpStatus);
res.should.have.property('body');
res.body.should.have.properties({
code : test.expectedHttpStatus,
status : test.expectedStatusText || 'success'
});
if (typeof test.expectedResponseData !== 'undefined') {
res.body.should.have.property('data');
res.body.data.should.have.properties(test.expectedResponseData);
if (typeof test.expectedAdditionalResponseDataProperties !== 'undefined') {
res.body.data.should.have.properties(test.expectedAdditionalResponseDataProperties);
}
}
if (typeof test.saveTokenAs !== 'undefined') {
savedTokens[test.saveTokenAs] = res.body.data.resetPasswordToken;
}
done();
});
});
};
const testResetPassword = function(test) {
it(test.description, function(done) {
superagent
.put(ESDR_PASSWORD_RESET_API_URL)
.send({
password : test.password,
token : typeof test.token === 'function' ? test.token() : test.token
})
.end(function(err, res) {
should.not.exist(err);
should.exist(res);
if (test.debug) {
console.log(JSON.stringify(res.body, null, 3));
}
res.should.have.property('status', test.expectedHttpStatus);
res.should.have.property('body');
res.body.should.have.properties({
code : test.expectedHttpStatus,
status : test.expectedStatusText || 'success'
});
res.body.should.have.property('data');
if (typeof test.expectedResponseData !== 'undefined') {
res.body.data.should.have.properties(test.expectedResponseData);
}
if (Array.isArray(test.expectedErrors)) {
res.body.data.errors.should.have.length(test.expectedErrors.length);
res.body.data.errors.forEach(function(validationItem, index) {
validationItem.should.have.properties(test.expectedErrors[index]);
});
}
done();
});
});
};
const savedTokens = {};
testRequestPasswordResetToken({
description : "Should be able to request a password reset token",
email : user1.email,
expectedHttpStatus : httpStatus.CREATED,
expectedResponseData : {
email : user1.email
},
expectedAdditionalResponseDataProperties : ['resetPasswordToken'],
saveTokenAs : "token1"
});
testRequestPasswordResetToken({
description : "Should be able to request a password reset token again",
email : user1.email,
expectedHttpStatus : httpStatus.CREATED,
expectedResponseData : {
email : user1.email
},
expectedAdditionalResponseDataProperties : ['resetPasswordToken'],
saveTokenAs : "token2"
});
it("Requesting the password reset token multiple times should yield different tokens", function(done) {
savedTokens['token1'].should.not.equal(savedTokens['token2']);
done();
});
testResetPassword(
{
description : "Should fail to set the password if the reset password token is missing",
password : newPassword,
expectedHttpStatus : httpStatus.UNPROCESSABLE_ENTITY,
expectedStatusText : 'error'
}
);
testResetPassword(
{
description : "Should fail to set the password using an invalid reset password token",
password : newPassword,
token : "bogus",
expectedHttpStatus : httpStatus.BAD_REQUEST,
expectedStatusText : 'error'
}
);
testResetPassword(
{
debug : true,
description : "Should fail to set the password using an invalid password",
password : "z",
token : function() {
return savedTokens['token2']
},
expectedHttpStatus : httpStatus.UNPROCESSABLE_ENTITY,
expectedStatusText : 'error',
expectedResponseData : {
"message" : "validation failed"
},
expectedErrors : [
{
keyword : 'minLength',
dataPath : '.password',
schemaPath : '#/properties/password/minLength'
}
]
}
);
testResetPassword(
{
description : "Should be able to set the password using the reset password token",
password : newPassword,
token : function() {
return savedTokens['token2']
},
expectedHttpStatus : httpStatus.OK
}
);
it("Should fail to find the user by email and the old password", function(done) {
global.db.users.findByEmailAndPassword(user1.email, user1.password, function(err, user) {
should.not.exist(err);
should.not.exist(user);
done();
});
});
it("Should be able to find the user by email and the new password", function(done) {
global.db.users.findByEmailAndPassword(user1.email, newPassword, function(err, user) {
should.not.exist(err);
should.exist(user);
user.should.have.properties('password', 'created', 'modified');
user.should.have.properties({
id : user1.id,
email : user1.email,
displayName : user1.displayName,
});
done();
});
});
testRequestPasswordResetToken({
description : "Should fail to request a password reset token if email is not specified",
expectedHttpStatus : httpStatus.UNPROCESSABLE_ENTITY,
expectedStatusText : 'error'
});
testRequestPasswordResetToken({
description : "Should fail to request a password reset token for an invalid email",
email : 'invalid',
expectedHttpStatus : httpStatus.UNPROCESSABLE_ENTITY,
expectedStatusText : 'error',
expectedResponseData : {
email : 'invalid'
}
});
testRequestPasswordResetToken({
description : "Should fail to request a password reset token for an unknown email",
email : '[email protected]',
expectedHttpStatus : httpStatus.BAD_REQUEST,
expectedStatusText : 'error',
expectedResponseData : {
email : '[email protected]'
}
});
it("A request for a password reset token to be sent should not require client authentication", function(done) {
superagent
.post(ESDR_PASSWORD_RESET_API_URL)
.send({ email : user1.email })
.end(function(err, res) {
should.not.exist(err);
should.exist(res);
res.should.have.property('status', httpStatus.CREATED);
res.should.have.property('body');
res.body.should.have.properties({
code : httpStatus.CREATED,
status : 'success'
});
res.body.should.have.property('data');
res.body.data.should.have.property('email', user1.email);
res.body.data.should.have.property('resetPasswordToken');
savedTokens['token3'] = res.body.data.resetPasswordToken;
done();
});
});
testRequestPasswordResetToken({
description : "A request for a password reset token to be sent should fail if the client authentication is invalid",
email : user1.email,
client : {
clientName : client1.clientName,
clientSecret : 'bogus',
},
expectedHttpStatus : httpStatus.UNAUTHORIZED,
expectedStatusText : 'error'
});
testRequestPasswordResetToken({
description : "Should fail to request a password reset token for an invalid client",
email : user1.email,
client : {
clientName : 'bogus_client',
clientSecret : 'bogus',
},
expectedHttpStatus : httpStatus.UNAUTHORIZED,
expectedStatusText : 'error'
});
}); // End User Verification
}); // End REST API