-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tls: make StreamWrap work correctly in "drain" callback
When an instance of StreamWrap is shutting down and a "drain" event is emitted, the instance will abort as its `this[kCurrentShutdownRequest]` is already set. The following test will fail before this commit. PR-URL: #23294 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
- Loading branch information
1 parent
2564abf
commit 1afd207
Showing
2 changed files
with
51 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const { StreamWrap } = require('_stream_wrap'); | ||
const { Duplex } = require('stream'); | ||
const { ShutdownWrap } = process.binding('stream_wrap'); | ||
|
||
// This test makes sure that when an instance of JSStreamWrap is waiting for | ||
// a "drain" event to `doShutdown`, the instance will work correctly when a | ||
// "drain" event emitted. | ||
{ | ||
let resolve = null; | ||
|
||
class TestDuplex extends Duplex { | ||
_write(chunk, encoding, callback) { | ||
// We will resolve the write later. | ||
resolve = () => { | ||
callback(); | ||
}; | ||
} | ||
|
||
_read() {} | ||
} | ||
|
||
const testDuplex = new TestDuplex(); | ||
const socket = new StreamWrap(testDuplex); | ||
|
||
socket.write( | ||
// Make the buffer long enough so that the `Writable` will emit "drain". | ||
Buffer.allocUnsafe(socket.writableHighWaterMark * 2), | ||
common.mustCall() | ||
); | ||
|
||
// Make sure that the 'drain' events will be emitted. | ||
testDuplex.on('drain', common.mustCall(() => { | ||
console.log('testDuplex drain'); | ||
})); | ||
|
||
assert.strictEqual(typeof resolve, 'function'); | ||
|
||
const req = new ShutdownWrap(); | ||
req.oncomplete = common.mustCall(); | ||
req.handle = socket._handle; | ||
// Should not throw. | ||
socket._handle.shutdown(req); | ||
|
||
resolve(); | ||
} |