Fix some accidental t.ends() and corpus paths in test cases for 0.11.0.
This commit is contained in:
parent
cfa64e9f97
commit
b0cd1f628d
1 changed files with 18 additions and 4 deletions
|
@ -218,7 +218,6 @@ test('--level 40', function (t) {
|
||||||
exec(BUNYAN + ' -l 40 corpus/all.log', function (err, stdout, stderr) {
|
exec(BUNYAN + ' -l 40 corpus/all.log', function (err, stdout, stderr) {
|
||||||
t.error(err);
|
t.error(err);
|
||||||
t.equal(stdout, expect);
|
t.equal(stdout, expect);
|
||||||
t.end();
|
|
||||||
exec(BUNYAN + ' --level 40 corpus/all.log', function (err, stdout, stderr) {
|
exec(BUNYAN + ' --level 40 corpus/all.log', function (err, stdout, stderr) {
|
||||||
t.error(err);
|
t.error(err);
|
||||||
t.equal(stdout, expect);
|
t.equal(stdout, expect);
|
||||||
|
@ -242,7 +241,6 @@ test('--condition "level === 10 && pid === 123"', function (t) {
|
||||||
function (err, stdout, stderr) {
|
function (err, stdout, stderr) {
|
||||||
t.error(err);
|
t.error(err);
|
||||||
t.equal(stdout, expect);
|
t.equal(stdout, expect);
|
||||||
t.end();
|
|
||||||
exec(BUNYAN + ' --condition "level === 10 && pid === 123" corpus/all.log',
|
exec(BUNYAN + ' --condition "level === 10 && pid === 123" corpus/all.log',
|
||||||
function (err, stdout, stderr) {
|
function (err, stdout, stderr) {
|
||||||
t.error(err);
|
t.error(err);
|
||||||
|
@ -265,8 +263,7 @@ test('multiple --conditions', function (t) {
|
||||||
'not a JSON line\n',
|
'not a JSON line\n',
|
||||||
'{"hi": "there"}\n'
|
'{"hi": "there"}\n'
|
||||||
].join('');
|
].join('');
|
||||||
t.end();
|
exec(BUNYAN + ' corpus/all.log ' +
|
||||||
exec(BUNYAN + ' test/corpus/all.log ' +
|
|
||||||
'-c "if (level === 40) pid = 1; true" ' +
|
'-c "if (level === 40) pid = 1; true" ' +
|
||||||
'-c "pid === 1"', function (err, stdout, stderr) {
|
'-c "pid === 1"', function (err, stdout, stderr) {
|
||||||
t.error(err);
|
t.error(err);
|
||||||
|
@ -274,3 +271,20 @@ test('multiple --conditions', function (t) {
|
||||||
t.end();
|
t.end();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// https://github.com/trentm/node-bunyan/issues/30
|
||||||
|
//
|
||||||
|
// One of the records in corpus/withreq.log has a 'req'
|
||||||
|
// field with no 'headers'. Ditto for the 'res' field.
|
||||||
|
//test('robust req handling', function (t) {
|
||||||
|
// XXX
|
||||||
|
// var expect = [
|
||||||
|
// '{"hi": "there"}\n'
|
||||||
|
// ].join('');
|
||||||
|
// exec(BUNYAN + ' corpus/withreq.log', function (err, stdout, stderr) {
|
||||||
|
// t.ok(false, "boom XXX")
|
||||||
|
// t.error(err);
|
||||||
|
// t.equal(stdout, expect);
|
||||||
|
// t.end();
|
||||||
|
// });
|
||||||
|
//});
|
||||||
|
|
Loading…
Reference in a new issue