summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-wrap-econnreset.js
blob: 5c6db86b75e06a958b2b3de268b5c508c4e30053 (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
'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;

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