mirror of https://github.com/lukechilds/node.git
Browse Source
Fixes: https://github.com/nodejs/node/issues/831 Fixes: https://github.com/nodejs/node/issues/947 Ref: https://github.com/nodejs/node/pull/9470 PR-URL: https://github.com/nodejs/node/pull/9744 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>v6
4 changed files with 117 additions and 5 deletions
@ -0,0 +1,17 @@ |
|||||
|
'use strict'; |
||||
|
const common = require('../common'); |
||||
|
const { Console } = require('console'); |
||||
|
const { Writable } = require('stream'); |
||||
|
const assert = require('assert'); |
||||
|
|
||||
|
const out = new Writable({ |
||||
|
write: common.mustCall((chunk, enc, callback) => { |
||||
|
process.nextTick(callback, new Error('foobar')); |
||||
|
}) |
||||
|
}); |
||||
|
|
||||
|
const c = new Console(out, out, true); |
||||
|
|
||||
|
assert.doesNotThrow(() => { |
||||
|
c.log('abc'); |
||||
|
}); |
@ -0,0 +1,47 @@ |
|||||
|
'use strict'; |
||||
|
const common = require('../common'); |
||||
|
const { Console } = require('console'); |
||||
|
const { Writable } = require('stream'); |
||||
|
const assert = require('assert'); |
||||
|
|
||||
|
{ |
||||
|
const out = new Writable({ |
||||
|
write: common.mustCall((chunk, enc, callback) => { |
||||
|
callback(new Error('foobar')); |
||||
|
}) |
||||
|
}); |
||||
|
|
||||
|
const c = new Console(out, out, true); |
||||
|
|
||||
|
assert.doesNotThrow(() => { |
||||
|
c.log('abc'); |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
{ |
||||
|
const out = new Writable({ |
||||
|
write: common.mustCall((chunk, enc, callback) => { |
||||
|
throw new Error('foobar'); |
||||
|
}) |
||||
|
}); |
||||
|
|
||||
|
const c = new Console(out, out, true); |
||||
|
|
||||
|
assert.doesNotThrow(() => { |
||||
|
c.log('abc'); |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
{ |
||||
|
const out = new Writable({ |
||||
|
write: common.mustCall((chunk, enc, callback) => { |
||||
|
setImmediate(() => callback(new Error('foobar'))); |
||||
|
}) |
||||
|
}); |
||||
|
|
||||
|
const c = new Console(out, out, true); |
||||
|
|
||||
|
assert.doesNotThrow(() => { |
||||
|
c.log('abc'); |
||||
|
}); |
||||
|
} |
Loading…
Reference in new issue