-
Notifications
You must be signed in to change notification settings - Fork 30.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
59 additions
and
5 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
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
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
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,44 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
|
||
// Tests for the regression in _stream_writable fixed in | ||
// https://github.com/nodejs/node/pull/31756 | ||
|
||
// Specifically, when a write callback is invoked synchronously | ||
// with an error, and autoDestroy is not being used, the error | ||
// should still be emitted on nextTick. | ||
|
||
const { Writable } = require('stream'); | ||
|
||
class MyStream extends Writable { | ||
#cb = undefined; | ||
|
||
constructor() { | ||
super({ autoDestroy: false }); | ||
} | ||
|
||
_write(_, __, cb) { | ||
this.#cb = cb; | ||
} | ||
|
||
close() { | ||
// Synchronously invoke the callback with an error. | ||
this.#cb(new Error('foo')); | ||
} | ||
} | ||
|
||
const stream = new MyStream(); | ||
|
||
const mustError = common.mustCall(2); | ||
|
||
stream.write('test', () => {}); | ||
|
||
// Both error callbacks should be invoked. | ||
|
||
stream.on('error', mustError); | ||
|
||
stream.close(); | ||
|
||
// Without the fix in #31756, the error handler | ||
// added after the call to close will not be invoked. | ||
stream.on('error', mustError); |