blob: 2b6dc84f37195ca9cf63a5d14d99bd43a30890de (
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
|
'use strict';
// verify that connect reqs are properly cleaned up
var common = require('../common');
var assert = require('assert');
var net = require('net');
var ROUNDS = 10;
var ATTEMPTS_PER_ROUND = 100;
var rounds = 1;
var reqs = 0;
pummel();
function pummel() {
console.log('Round', rounds, '/', ROUNDS);
for (var pending = 0; pending < ATTEMPTS_PER_ROUND; pending++) {
net.createConnection(common.PORT).on('error', function(err) {
assert.equal(err.code, 'ECONNREFUSED');
if (--pending > 0) return;
if (rounds === ROUNDS) return check();
rounds++;
pummel();
});
reqs++;
}
}
function check() {
setTimeout(function() {
assert.equal(process._getActiveRequests().length, 0);
assert.equal(process._getActiveHandles().length, 1); // the timer
check_called = true;
}, 0);
}
var check_called = false;
process.on('exit', function() {
assert.equal(rounds, ROUNDS);
assert.equal(reqs, ROUNDS * ATTEMPTS_PER_ROUND);
assert(check_called);
});
|