Sh3ll
OdayForums


Server : Apache
System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64
User : tradze ( 1001)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /home/tradze/public_html/node-socket/node_modules/broadway/test/helpers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/tradze/public_html/node-socket/node_modules/broadway/test/helpers/macros.js
/*
 * 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;
}

ZeroDay Forums Mini