You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
/* |
|
* couchdb-test.js: Tests for instances of the Couchdb transport |
|
* |
|
* (C) 2011 Max Ogden |
|
* MIT LICENSE |
|
* |
|
*/ |
|
|
|
var path = require('path'), |
|
vows = require('vows'), |
|
fs = require('fs'), |
|
http = require('http'), |
|
assert = require('assert'), |
|
winston = require('../../lib/winston'), |
|
helpers = require('../helpers'); |
|
|
|
var couchdbTransport = new (winston.transports.Couchdb)({ |
|
"host": "localhost", |
|
"port": 1337, |
|
"db": "logs" |
|
}); |
|
|
|
var server = http.createServer(function (req, res) { |
|
res.end(); |
|
}); |
|
|
|
server.listen(1337); |
|
|
|
vows.describe('winston/transports/couchdb').addBatch({ |
|
"An instance of the Couchdb Transport": { |
|
"when passed valid options": { |
|
"should have the proper methods defined": function () { |
|
helpers.assertCouchdb(couchdbTransport); |
|
}, |
|
"the log() method": helpers.testNpmLevels(couchdbTransport, "should respond with true", function (ign, err, logged) { |
|
assert.isNull(err); |
|
assert.isTrue(logged); |
|
}) |
|
} |
|
} |
|
}).addBatch({ |
|
"When the tests are over": { |
|
"the server should cleanup": function () { |
|
server.close(); |
|
} |
|
} |
|
}).export(module); |