-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stream: finished waits for 'close' on OutgoingMessage
Don't invoke finished callback until OutgoingMessagehas emitted 'close'. PR-URL: #36648 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
1 parent
cc37ff2
commit abae61e
Showing
2 changed files
with
43 additions
and
1 deletion.
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,32 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const { finished } = require('stream'); | ||
|
||
const http = require('http'); | ||
const assert = require('assert'); | ||
|
||
const server = http.createServer(function(req, res) { | ||
let closed = false; | ||
res | ||
.on('close', common.mustCall(() => { | ||
closed = true; | ||
finished(res, common.mustCall(() => { | ||
server.close(); | ||
})); | ||
})) | ||
.end(); | ||
finished(res, common.mustCall(() => { | ||
assert.strictEqual(closed, true); | ||
})); | ||
|
||
}).listen(0, function() { | ||
http | ||
.request({ | ||
port: this.address().port, | ||
method: 'GET' | ||
}) | ||
.on('response', function(res) { | ||
res.resume(); | ||
}) | ||
.end(); | ||
}); |