![]() 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 : /usr/local/lib/node_modules/forever/node_modules/winston/test/ |
Upload File : |
/* * custom-timestamp-test.js: Test function as timestamp option for transport `{ timestamp: function () {} }` * * (C) 2011 Charlie Robbins, Tom Shinnick * MIT LICENSE * */ var assert = require('assert'), events = require('events'), fs = require('fs'), path = require('path'), vows = require('vows'), winston = require('../lib/winston'), helpers = require('./helpers'); function assertTimestamp (basename, options) { var filename = path.join(__dirname, 'fixtures', 'logs', basename + '.log'); try { fs.unlinkSync(filename) } catch (ex) { } return { topic: function () { options.filename = filename; var transport = new (winston.transports.File)(options); // We must wait until transport file has emitted the 'flush' // event to be sure the file has been created and written transport.once('flush', this.callback.bind(this, null, filename)); transport.log('info', 'When a fake tree falls in the forest...', null, function () {}); }, "should log with the appropriate timestamp": function (_, filename) { var data = fs.readFileSync(filename, 'utf8'); assert.isNotNull(data.match(options.pattern)); } } } vows.describe('winston/transport/timestamp').addBatch({ "When timestamp option is used": { "with file transport": { "with value set to false": assertTimestamp('noTimestamp', { pattern: /^info\:/, json: false, timestamp: false }), "with value set to true ": assertTimestamp('defaultTimestamp', { pattern: /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z/, json: false, timestamp: true }), "and function value": assertTimestamp('customTimestamp', { pattern: /^\d{8}\./, json: false, timestamp: function () { return '20110803.171657'; } }) } } }).export(module);