Skip to content

Commit

Permalink
Additional password reset unit tests for API and REST
Browse files Browse the repository at this point in the history
  • Loading branch information
greaterweb committed Jan 5, 2015
1 parent e0d3cce commit 15bac12
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion test/user.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -804,9 +804,17 @@ describe('User', function() {

describe('Password Reset', function() {
describe('User.resetPassword(options, cb)', function() {
var email = 'foo@bar.com';

it('Requires email address to reset password', function(done) {
User.resetPassword({ }, function(err) {
assert(err);
done();
});
});

it('Creates a temp accessToken to allow a user to change password', function(done) {
var calledBack = false;
var email = 'foo@bar.com';

User.resetPassword({
email: email
Expand All @@ -826,6 +834,35 @@ describe('User', function() {
});
});
});

it('Password reset over REST rejected without email address', function(done) {
request(app)
.post('/users/reset')
.expect('Content-Type', /json/)
.expect(400)
.send({ })
.end(function(err, res) {
if (err) {
return done(err);
}
done();
});
});

it('Password reset over REST requires email address', function(done) {
request(app)
.post('/users/reset')
.expect('Content-Type', /json/)
.expect(204)
.send({ email: email })
.end(function(err, res) {
if (err) {
return done(err);
}
assert.deepEqual(res.body, { });
done();
});
});
});
});

Expand Down

0 comments on commit 15bac12

Please sign in to comment.