log4js-node/test/logLevelFilter-test.js

81 lines
2.4 KiB
JavaScript
Raw Normal View History

2013-05-27 05:44:59 +08:00
"use strict";
var vows = require('vows')
, fs = require('fs')
2014-07-17 15:29:03 +08:00
, assert = require('assert')
, os = require('os')
, EOL = require('os').EOL || '\n';
function remove(filename) {
2013-05-27 05:44:59 +08:00
try {
fs.unlinkSync(filename);
} catch (e) {
//doesn't really matter if it failed
}
}
vows.describe('log4js logLevelFilter').addBatch({
2013-05-27 05:44:59 +08:00
'appender': {
topic: function() {
var log4js = require('../lib/log4js'), logEvents = [], logger;
log4js.clearAppenders();
log4js.addAppender(
require('../lib/appenders/logLevelFilter')
.appender(
'ERROR',
2013-05-27 05:44:59 +08:00
function(evt) { logEvents.push(evt); }
),
2013-05-27 05:44:59 +08:00
"logLevelTest"
);
2013-05-27 05:44:59 +08:00
logger = log4js.getLogger("logLevelTest");
logger.debug('this should not trigger an event');
logger.warn('neither should this');
logger.error('this should, though');
logger.fatal('so should this');
return logEvents;
},
2013-05-27 05:44:59 +08:00
'should only pass log events greater than or equal to its own level' : function(logEvents) {
assert.equal(logEvents.length, 2);
assert.equal(logEvents[0].data[0], 'this should, though');
assert.equal(logEvents[1].data[0], 'so should this');
}
},
2013-05-27 05:44:59 +08:00
'configure': {
topic: function() {
var log4js = require('../lib/log4js')
, logger;
2013-05-27 05:44:59 +08:00
remove(__dirname + '/logLevelFilter.log');
remove(__dirname + '/logLevelFilter-warnings.log');
2013-05-27 05:44:59 +08:00
log4js.configure('test/with-logLevelFilter.json');
logger = log4js.getLogger("tests");
logger.info('main');
logger.error('both');
logger.warn('both');
logger.debug('main');
//wait for the file system to catch up
setTimeout(this.callback, 500);
2013-05-27 05:44:59 +08:00
},
'tmp-tests.log': {
topic: function() {
fs.readFile(__dirname + '/logLevelFilter.log', 'utf8', this.callback);
},
2014-07-17 15:29:03 +08:00
'should contain all log messages': function (contents) {
var messages = contents.trim().split(EOL);
2013-05-27 05:44:59 +08:00
assert.deepEqual(messages, ['main','both','both','main']);
}
},
'tmp-tests-warnings.log': {
topic: function() {
fs.readFile(__dirname + '/logLevelFilter-warnings.log','utf8',this.callback);
},
'should contain only error and warning log messages': function(contents) {
2014-07-17 15:29:03 +08:00
var messages = contents.trim().split(EOL);
2013-05-27 05:44:59 +08:00
assert.deepEqual(messages, ['both','both']);
}
}
2013-05-27 05:44:59 +08:00
}
}).export(module);