From b7db9808b2353bc8ed454a1e63f4240117adf532 Mon Sep 17 00:00:00 2001 From: Raymond Feng Date: Sat, 20 Dec 2014 15:57:38 -0800 Subject: [PATCH 1/2] Allow User.hashPassword/validatePassword to be overridden See https://github.com/strongloop/loopback/issues/251 --- common/models/user.js | 21 +++++++++++++++++++-- test/user.test.js | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+), 2 deletions(-) diff --git a/common/models/user.js b/common/models/user.js index e9fee16e..ae991a55 100644 --- a/common/models/user.js +++ b/common/models/user.js @@ -453,6 +453,24 @@ module.exports = function(User) { } }; + /*! + * Hash the plain password + */ + User.hashPassword = function(plain) { + this.validatePassword(plain); + var salt = bcrypt.genSaltSync(this.settings.saltWorkFactor || SALT_WORK_FACTOR); + return bcrypt.hashSync(plain, salt); + }; + + User.validatePassword = function(plain) { + if (typeof plain === 'string' && plain) { + return true; + } + var err = new Error('Invalid password: ' + plain); + err.statusCode = 422; + throw err; + }; + /*! * Setup an extended user model. */ @@ -467,8 +485,7 @@ module.exports = function(User) { this.settings.ttl = DEFAULT_TTL; UserModel.setter.password = function(plain) { - var salt = bcrypt.genSaltSync(this.constructor.settings.saltWorkFactor || SALT_WORK_FACTOR); - this.$password = bcrypt.hashSync(plain, salt); + this.$password = this.constructor.hashPassword(plain); }; // Make sure emailVerified is not set by creation diff --git a/test/user.test.js b/test/user.test.js index 8b8ee4f3..bf62392a 100644 --- a/test/user.test.js +++ b/test/user.test.js @@ -135,6 +135,45 @@ describe('User', function() { assert(u.password !== 'bar'); }); + describe('custom password hash', function() { + var defaultHashPassword; + var defaultValidatePassword; + + beforeEach(function() { + defaultHashPassword = User.hashPassword; + defaultValidatePassword = User.defaultValidatePassword; + + User.hashPassword = function(plain) { + return plain.toUpperCase(); + }; + + User.validatePassword = function(plain) { + if (!plain || plain.length < 3) { + throw new Error('Password must have at least 3 chars'); + } + return true; + }; + }); + + afterEach(function() { + User.hashPassword = defaultHashPassword; + }); + + it('Reports invalid password', function() { + try { + var u = new User({username: 'foo', password: 'aa'}); + assert(false, 'Error should have been thrown'); + } catch (e) { + // Ignore + } + }); + + it('Hashes the given password', function() { + var u = new User({username: 'foo', password: 'bar'}); + assert(u.password === 'BAR'); + }); + }); + it('Create a user over REST should remove emailVerified property', function(done) { request(app) .post('/users') From 4a9c5b627c9bb89b10f8b852c38ccb90a51c8dbd Mon Sep 17 00:00:00 2001 From: Raymond Feng Date: Tue, 6 Jan 2015 16:02:24 -0800 Subject: [PATCH 2/2] Fix Geo test cases --- test/geo-point.test.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/test/geo-point.test.js b/test/geo-point.test.js index aea82b8e..9372caae 100644 --- a/test/geo-point.test.js +++ b/test/geo-point.test.js @@ -22,14 +22,14 @@ describe('GeoPoint', function() { describe('GeoPoint()', function() { it('Create from string', function() { var point = new GeoPoint('1.234,5.678'); - assert.equal(point.lng, 1.234); - assert.equal(point.lat, 5.678); + assert.equal(point.lat, 1.234); + assert.equal(point.lng, 5.678); var point2 = new GeoPoint('1.222, 5.333'); - assert.equal(point2.lng, 1.222); - assert.equal(point2.lat, 5.333); + assert.equal(point2.lat, 1.222); + assert.equal(point2.lng, 5.333); var point3 = new GeoPoint('1.333, 5.111'); - assert.equal(point3.lng, 1.333); - assert.equal(point3.lat, 5.111); + assert.equal(point3.lat, 1.333); + assert.equal(point3.lng, 5.111); }); it('Serialize as string', function() { var str = '1.234,5.678'; @@ -38,8 +38,8 @@ describe('GeoPoint', function() { }); it('Create from array', function() { var point = new GeoPoint([5.555, 6.777]); - assert.equal(point.lng, 5.555); - assert.equal(point.lat, 6.777); + assert.equal(point.lat, 5.555); + assert.equal(point.lng, 6.777); }); it('Create as Model property', function() { var Model = loopback.createModel('geo-model', { @@ -51,8 +51,8 @@ describe('GeoPoint', function() { }); assert(m.geo instanceof GeoPoint); - assert.equal(m.geo.lng, 1.222); - assert.equal(m.geo.lat, 3.444); + assert.equal(m.geo.lat, 1.222); + assert.equal(m.geo.lng, 3.444); }); }); });