summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-handshake-error.js
blob: 7623f816f3be072e0fd9cb6e61cf55e12ed5c720 (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
'use strict';

const common = require('../common');
const assert = require('assert');

if (!common.hasCrypto) {
  common.skip('missing crypto');
  return;
}
const tls = require('tls');

const fs = require('fs');

var server = tls.createServer({
  key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
  cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem'),
  rejectUnauthorized: true
}, function(c) {
}).listen(0, common.mustCall(function() {
  var c = tls.connect({
    port: this.address().port,
    ciphers: 'RC4'
  }, function() {
    assert(false, 'should not be called');
  });

  c.on('error', common.mustCall(function(err) {
    assert.notStrictEqual(err.code, 'ECONNRESET');
  }));

  c.on('close', common.mustCall(function(err) {
    assert.ok(err);
    server.close();
  }));
}));