summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-close-event-after-write.js
blob: 31ebc897b14758720d5b88c11eb0ed829a745352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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();
  }));
}));