Emit resetPasswordRequest event with options
This commit is contained in:
parent
dac1295ad7
commit
fa8bca8d6e
|
@ -617,6 +617,7 @@ module.exports = function(User) {
|
||||||
email: options.email,
|
email: options.email,
|
||||||
accessToken: accessToken,
|
accessToken: accessToken,
|
||||||
user: user,
|
user: user,
|
||||||
|
options: options,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -1815,7 +1815,10 @@ describe('User', function() {
|
||||||
|
|
||||||
describe('Password Reset', function() {
|
describe('Password Reset', function() {
|
||||||
describe('User.resetPassword(options, cb)', function() {
|
describe('User.resetPassword(options, cb)', function() {
|
||||||
var email = 'foo@bar.com';
|
var options = {
|
||||||
|
email: 'foo@bar.com',
|
||||||
|
redirect: 'http://foobar.com/reset-password',
|
||||||
|
};
|
||||||
|
|
||||||
it('Requires email address to reset password', function(done) {
|
it('Requires email address to reset password', function(done) {
|
||||||
User.resetPassword({ }, function(err) {
|
User.resetPassword({ }, function(err) {
|
||||||
|
@ -1849,11 +1852,27 @@ describe('User', function() {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('Checks that options exist', function(done) {
|
||||||
|
var calledBack = false;
|
||||||
|
|
||||||
|
User.resetPassword(options, function() {
|
||||||
|
calledBack = true;
|
||||||
|
});
|
||||||
|
|
||||||
|
User.once('resetPasswordRequest', function(info) {
|
||||||
|
assert(info.options);
|
||||||
|
assert.equal(info.options, options);
|
||||||
|
assert(calledBack);
|
||||||
|
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
it('Creates a temp accessToken to allow a user to change password', function(done) {
|
it('Creates a temp accessToken to allow a user to change password', function(done) {
|
||||||
var calledBack = false;
|
var calledBack = false;
|
||||||
|
|
||||||
User.resetPassword({
|
User.resetPassword({
|
||||||
email: email,
|
email: options.email,
|
||||||
}, function() {
|
}, function() {
|
||||||
calledBack = true;
|
calledBack = true;
|
||||||
});
|
});
|
||||||
|
@ -1867,7 +1886,7 @@ describe('User', function() {
|
||||||
info.accessToken.user(function(err, user) {
|
info.accessToken.user(function(err, user) {
|
||||||
if (err) return done(err);
|
if (err) return done(err);
|
||||||
|
|
||||||
assert.equal(user.email, email);
|
assert.equal(user.email, options.email);
|
||||||
|
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
@ -1896,7 +1915,7 @@ describe('User', function() {
|
||||||
.post('/test-users/reset')
|
.post('/test-users/reset')
|
||||||
.expect('Content-Type', /json/)
|
.expect('Content-Type', /json/)
|
||||||
.expect(204)
|
.expect(204)
|
||||||
.send({email: email})
|
.send({email: options.email})
|
||||||
.end(function(err, res) {
|
.end(function(err, res) {
|
||||||
if (err) return done(err);
|
if (err) return done(err);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue