-
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.
net: check for close on stream, not parent
'close' event isn't emitted on a TLS connection if it's been written to (but 'end' and 'finish' events are). PR-URL: #25026 Fixes: #24984 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
- Loading branch information
1 parent
5f72f39
commit f17b61e
Showing
2 changed files
with
43 additions
and
2 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,41 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
|
||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
|
||
// Issue #24984 | ||
// 'close' event isn't emitted on a TLS connection if it's been written to | ||
// (but 'end' and 'finish' events are). Without a fix, this test won't exit. | ||
|
||
const tls = require('tls'); | ||
const fixtures = require('../common/fixtures'); | ||
let cconn = null; | ||
let sconn = null; | ||
|
||
function test() { | ||
if (cconn && sconn) { | ||
cconn.resume(); | ||
sconn.resume(); | ||
sconn.end(Buffer.alloc(1024 * 1024)); | ||
cconn.end(); | ||
} | ||
} | ||
|
||
const server = tls.createServer({ | ||
key: fixtures.readKey('agent1-key.pem'), | ||
cert: fixtures.readKey('agent1-cert.pem') | ||
}, function(c) { | ||
c.on('close', function() { | ||
server.close(); | ||
}); | ||
sconn = c; | ||
test(); | ||
}).listen(0, common.mustCall(function() { | ||
tls.connect(this.address().port, { | ||
rejectUnauthorized: false | ||
}, common.mustCall(function() { | ||
cconn = this; | ||
test(); | ||
})); | ||
})); |