summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-net-socket-keepalive.js
blob: c184e902b426855488d87d4de1919bd4c564bb51 (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
42
43
44
45
46
47
48
49
50
51
52
53
'use strict';

const common = require('../common');
if (!common.hasCrypto)
  common.skip('missing crypto');

const fixtures = require('../common/fixtures');
const tls = require('tls');
const net = require('net');

// This test ensures that when tls sockets are created with `allowHalfOpen`,
// they won't hang.
const key = fixtures.readKey('agent1-key.pem');
const cert = fixtures.readKey('agent1-cert.pem');
const ca = fixtures.readKey('ca1-cert.pem');
const options = {
  key,
  cert,
  ca: [ca],
};

const server = tls.createServer(options, common.mustCall((conn) => {
  conn.write('hello');
  conn.on('data', common.mustCall());
  conn.end();
})).listen(0, common.mustCall(() => {
  const netSocket = new net.Socket({
    allowHalfOpen: true,
  });

  const socket = tls.connect({
    socket: netSocket,
    rejectUnauthorized: false,
  });

  const { port, address } = server.address();

  // Doing `net.Socket.connect()` after `tls.connect()` will make tls module
  // wrap the socket in StreamWrap.
  netSocket.connect({
    port,
    address,
  });

  socket.on('end', common.mustCall());
  socket.on('data', common.mustCall());
  socket.on('close', common.mustCall(() => {
    server.close();
  }));

  socket.write('hello');
  socket.end();
}));