Merge pull request #2822 from strongloop/fix/promise-remote-hooks-2x

Fix support for remote hooks returning a Promise
This commit is contained in:
Miroslav Bajtoš 2016-10-05 13:59:10 +02:00 committed by GitHub
commit 87a89db15f
2 changed files with 29 additions and 2 deletions

View File

@ -202,7 +202,7 @@ module.exports = function(registry) {
this._runWhenAttachedToApp(function(app) {
var remotes = app.remotes();
remotes.before(className + '.' + name, function(ctx, next) {
fn(ctx, ctx.result, next);
return fn(ctx, ctx.result, next);
});
});
};
@ -213,7 +213,7 @@ module.exports = function(registry) {
this._runWhenAttachedToApp(function(app) {
var remotes = app.remotes();
remotes.after(className + '.' + name, function(ctx, next) {
fn(ctx, ctx.result, next);
return fn(ctx, ctx.result, next);
});
});
};

View File

@ -10,6 +10,7 @@ var loopback = require('../');
var ACL = loopback.ACL;
var defineModelTestsWithDataSource = require('./util/model-tests');
var PersistedModel = loopback.PersistedModel;
var Promise = require('bluebird');
var sinonChai = require('sinon-chai');
chai.use(sinonChai);
@ -308,6 +309,32 @@ describe.onServer('Remote Methods', function() {
done();
});
});
it('Does not stop the hook chain after returning a promise', function(done) {
var hooksCalled = [];
User.beforeRemote('create', function() {
hooksCalled.push('first');
return Promise.resolve();
});
User.beforeRemote('create', function(ctx, user, next) {
hooksCalled.push('second');
next();
});
// invoke save
request(app)
.post('/users')
.send({ data: { first: 'foo', last: 'bar' }})
.expect('Content-Type', /json/)
.expect(200)
.end(function(err, res) {
if (err) return done(err);
expect(hooksCalled).to.eql(['first', 'second']);
done();
});
});
});
describe('Model.afterRemote(name, fn)', function() {