2018-12-13 23:47:32 +00:00
|
|
|
'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;
|
2020-02-26 04:12:51 +00:00
|
|
|
let read_len = 0;
|
|
|
|
const buffer_size = 1024 * 1024;
|
2018-12-13 23:47:32 +00:00
|
|
|
|
|
|
|
function test() {
|
|
|
|
if (cconn && sconn) {
|
|
|
|
cconn.resume();
|
|
|
|
sconn.resume();
|
2020-02-26 04:12:51 +00:00
|
|
|
sconn.end(Buffer.alloc(buffer_size));
|
2018-12-13 23:47:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const server = tls.createServer({
|
|
|
|
key: fixtures.readKey('agent1-key.pem'),
|
|
|
|
cert: fixtures.readKey('agent1-cert.pem')
|
2020-02-26 04:12:51 +00:00
|
|
|
}, (c) => {
|
|
|
|
c.on('close', common.mustCall(() => server.close()));
|
2018-12-13 23:47:32 +00:00
|
|
|
sconn = c;
|
|
|
|
test();
|
|
|
|
}).listen(0, common.mustCall(function() {
|
|
|
|
tls.connect(this.address().port, {
|
|
|
|
rejectUnauthorized: false
|
|
|
|
}, common.mustCall(function() {
|
|
|
|
cconn = this;
|
2020-02-26 04:12:51 +00:00
|
|
|
cconn.on('data', (d) => {
|
|
|
|
read_len += d.length;
|
|
|
|
if (read_len === buffer_size) {
|
|
|
|
cconn.end();
|
|
|
|
}
|
|
|
|
});
|
2018-12-13 23:47:32 +00:00
|
|
|
test();
|
|
|
|
}));
|
|
|
|
}));
|