-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcoordinator.js
48 lines (42 loc) · 1.4 KB
/
coordinator.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
'use strict';
var should = require('chai').should(),
coordinator = require('../lib/runners/coordinator');
describe('Grasshopper core - coordinator', function(){
it('coordinator should see the changes made to kontx by it\' middleware.', function(done) {
coordinator.use('example.method', [
function(kontx, next){
kontx.payload.test = 0;
next();
},
function(kontx, next){
kontx.payload.a = 1;
next();
}
]);
coordinator.handle('example.method', {payload:{}}).then(function(payload){
payload.test.should.equal(0);
payload.a.should.equal(1);
}).done(function(){
done();
});
});
it('coordinator should notify when there is an error in the chain.', function(done) {
coordinator.use('example.method', [
function(kontx, next){
kontx.payload.test = 0;
next(new Error('ERROR!!!!'));
},
function(kontx, next){
kontx.payload.ab = 1;
next();
}
]);
coordinator.handle('example.method', {payload:{}})
.then(function(payload){
should.not.exist(payload);
})
.fail(function(e){
should.exist(e);
}).done(done);
});
});