summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-wrap-econnreset-socket.js
blob: 672da9876fd0059906557c496020a2b3536c9df0 (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
'use strict';

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

const assert = require('assert');
const net = require('net');
const tls = require('tls');

const server = net.createServer((c) => {
  c.end();
}).listen(common.mustCall(() => {
  const port = server.address().port;

  const socket = new net.Socket();

  tls.connect({ socket })
    .once('error', common.mustCall((e) => {
      assert.strictEqual(e.code, 'ECONNRESET');
      assert.strictEqual(e.path, undefined);
      assert.strictEqual(e.host, undefined);
      assert.strictEqual(e.port, undefined);
      assert.strictEqual(e.localAddress, undefined);
      server.close();
    }));

  socket.connect(port);
}));