![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/self/root/usr/local/lib/node_modules/forever/node_modules/broadway/test/helpers/ |
Upload File : |
/* * 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; }