summaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/log4js/test/debug-test.js
blob: 92dd915b3213ae834503b303f3725a4d0a8bfcfd (plain)
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
"use strict";
var vows = require('vows')
, assert = require('assert')
, sandbox = require('sandboxed-module')
, fakeConsole = {
  error: function(format, label, message) {
    this.logged = [ format, label, message ];
  }
}
, globals = function(debugValue) {
  return {
    process: {
      env: {
        'NODE_DEBUG': debugValue
      }
    },
    console: fakeConsole
  };
};

vows.describe('../lib/debug').addBatch({
  'when NODE_DEBUG is set to log4js': {
    topic: function() {
      var debug = sandbox.require(
        '../lib/debug', 
        { 'globals': globals('log4js') }
      );

      fakeConsole.logged = [];
      debug('cheese')('biscuits');
      return fakeConsole.logged;
    },
    'it should log to console.error': function(logged) {
      assert.equal(logged[0], 'LOG4JS: (%s) %s');
      assert.equal(logged[1], 'cheese');
      assert.equal(logged[2], 'biscuits');
    }
  },

  'when NODE_DEBUG is set to not log4js': {
    topic: function() {
      var debug = sandbox.require(
        '../lib/debug',
        { globals: globals('other_module') }
      );

      fakeConsole.logged = [];
      debug('cheese')('biscuits');
      return fakeConsole.logged;
    },
    'it should not log to console.error': function(logged) {
      assert.equal(logged.length, 0);
    }
  },

  'when NODE_DEBUG is not set': {
    topic: function() {
      var debug = sandbox.require(
        '../lib/debug',
        { globals: globals(null) }
      );

      fakeConsole.logged = [];
      debug('cheese')('biscuits');
      return fakeConsole.logged;
    },
    'it should not log to console.error': function(logged) {
      assert.equal(logged.length, 0);
    }
  }

}).exportTo(module);