summaryrefslogtreecommitdiff
path: root/test/parallel/test-net-connect-handle-econnrefused.js
blob: 77849b9b5772617465220faa713869062ecf0199 (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
var common = require('../common');
var net = require('net');
var assert = require('assert');


// Hopefully nothing is running on common.PORT
var c = net.createConnection(common.PORT);

c.on('connect', function() {
  console.error('connected?!');
  assert.ok(false);
});

var gotError = false;
c.on('error', function(e) {
  console.error('couldn\'t connect.');
  gotError = true;
  assert.equal('ECONNREFUSED', e.code);
});


process.on('exit', function() {
  assert.ok(gotError);
});