macros.js
1.73 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
* macros.js: Test macros for using broadway and vows
*
* (C) 2011, Nodejitsu Inc.
* MIT LICENSE
*
*/
var events = require('eventemitter2'),
assert = require('./assert'),
helpers = require('./helpers'),
broadway = require('../../lib/broadway');
var macros = exports;
macros.shouldExtend = function (app, plugin, vows) {
if (arguments.length === 1) {
plugin = app;
app = vows = null;
}
else if (arguments.length === 2) {
app = helpers.mockApp();
vows = plugin;
plugin = app;
}
var context = {
topic: function () {
app = app || helpers.mockApp();
broadway.plugins[plugin].attach.call(app, app.options[plugin] || {});
if (broadway.plugins[plugin].init) {
return broadway.plugins[plugin].init.call(app, this.callback.bind(this, null, app));
}
this.callback(null, app);
},
"should add the appropriate properties and methods": function (_, app) {
assert.plugins.has[plugin](app);
}
}
return extendContext(context, vows);
};
macros.shouldLogEvent = function (app, event, vow) {
return {
topic: function () {
app = app || helpers.findApp.apply(null, arguments);
var logger = app.log.get('default');
this.event = event;
app.once('broadway::logged', this.callback.bind(this, null));
app.emit.apply(app, event);
},
"should log the appropriate info": vow
};
};
function extendContext (context, vows) {
if (vows) {
if (vows.topic) {
console.log('Cannot include topic at top-level of nested vows:');
console.dir(vows, 'vows');
process.exit(1);
}
Object.keys(vows).forEach(function (key) {
context[key] = vows[key];
});
}
return context;
}