-
Notifications
You must be signed in to change notification settings - Fork 29.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stream: finish must always follow error
When _write completes with an Error, 'finish' was emitted before 'error' if the callback was asynchronous. This commit restore the previous behavior. The logic is still less then ideal, because we call the write() callback before emitting error if asynchronous, but after if synchronous. This commit do not try to change the behavior. This commit fixes a regression introduced by: #13195. Fixes: #13812 PR-URL: #13850 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Calvin Metcalf <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
- Loading branch information
Showing
3 changed files
with
175 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
156 changes: 156 additions & 0 deletions
156
test/parallel/test-stream-writable-write-writev-finish.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const stream = require('stream'); | ||
|
||
// ensure consistency between the finish event when using cork() | ||
// and writev and when not using them | ||
|
||
{ | ||
const writable = new stream.Writable(); | ||
|
||
writable._write = (chunks, encoding, cb) => { | ||
cb(new Error('write test error')); | ||
}; | ||
|
||
let firstError = false; | ||
writable.on('finish', common.mustCall(function() { | ||
assert.strictEqual(firstError, true); | ||
})); | ||
|
||
writable.on('prefinish', common.mustCall()); | ||
|
||
writable.on('error', common.mustCall((er) => { | ||
assert.strictEqual(er.message, 'write test error'); | ||
firstError = true; | ||
})); | ||
|
||
writable.end('test'); | ||
} | ||
|
||
{ | ||
const writable = new stream.Writable(); | ||
|
||
writable._write = (chunks, encoding, cb) => { | ||
setImmediate(cb, new Error('write test error')); | ||
}; | ||
|
||
let firstError = false; | ||
writable.on('finish', common.mustCall(function() { | ||
assert.strictEqual(firstError, true); | ||
})); | ||
|
||
writable.on('prefinish', common.mustCall()); | ||
|
||
writable.on('error', common.mustCall((er) => { | ||
assert.strictEqual(er.message, 'write test error'); | ||
firstError = true; | ||
})); | ||
|
||
writable.end('test'); | ||
} | ||
|
||
{ | ||
const writable = new stream.Writable(); | ||
|
||
writable._write = (chunks, encoding, cb) => { | ||
cb(new Error('write test error')); | ||
}; | ||
|
||
writable._writev = (chunks, cb) => { | ||
cb(new Error('writev test error')); | ||
}; | ||
|
||
let firstError = false; | ||
writable.on('finish', common.mustCall(function() { | ||
assert.strictEqual(firstError, true); | ||
})); | ||
|
||
writable.on('prefinish', common.mustCall()); | ||
|
||
writable.on('error', common.mustCall((er) => { | ||
assert.strictEqual(er.message, 'writev test error'); | ||
firstError = true; | ||
})); | ||
|
||
writable.cork(); | ||
writable.write('test'); | ||
|
||
setImmediate(function() { | ||
writable.end('test'); | ||
}); | ||
} | ||
|
||
{ | ||
const writable = new stream.Writable(); | ||
|
||
writable._write = (chunks, encoding, cb) => { | ||
setImmediate(cb, new Error('write test error')); | ||
}; | ||
|
||
writable._writev = (chunks, cb) => { | ||
setImmediate(cb, new Error('writev test error')); | ||
}; | ||
|
||
let firstError = false; | ||
writable.on('finish', common.mustCall(function() { | ||
assert.strictEqual(firstError, true); | ||
})); | ||
|
||
writable.on('prefinish', common.mustCall()); | ||
|
||
writable.on('error', common.mustCall((er) => { | ||
assert.strictEqual(er.message, 'writev test error'); | ||
firstError = true; | ||
})); | ||
|
||
writable.cork(); | ||
writable.write('test'); | ||
|
||
setImmediate(function() { | ||
writable.end('test'); | ||
}); | ||
} | ||
|
||
// Regression test for | ||
// https://github.com/nodejs/node/issues/13812 | ||
|
||
{ | ||
const rs = new stream.Readable(); | ||
rs.push('ok'); | ||
rs.push(null); | ||
rs._read = () => {}; | ||
|
||
const ws = new stream.Writable(); | ||
let firstError = false; | ||
|
||
ws.on('finish', common.mustCall(function() { | ||
assert.strictEqual(firstError, true); | ||
})); | ||
ws.on('error', common.mustCall(function() { | ||
firstError = true; | ||
})); | ||
|
||
ws._write = (chunk, encoding, done) => { | ||
setImmediate(done, new Error()); | ||
}; | ||
rs.pipe(ws); | ||
} | ||
|
||
{ | ||
const rs = new stream.Readable(); | ||
rs.push('ok'); | ||
rs.push(null); | ||
rs._read = () => {}; | ||
|
||
const ws = new stream.Writable(); | ||
|
||
ws.on('finish', common.mustNotCall()); | ||
ws.on('error', common.mustCall()); | ||
|
||
ws._write = (chunk, encoding, done) => { | ||
done(new Error()); | ||
}; | ||
rs.pipe(ws); | ||
} |
This file was deleted.
Oops, something went wrong.