Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
test: fix test/simple/test-net-server-max-connections.js is racey
Browse files Browse the repository at this point in the history
Fixes #1333.
  • Loading branch information
koichik committed Jan 22, 2012
1 parent 93298af commit 8271800
Showing 1 changed file with 48 additions and 46 deletions.
94 changes: 48 additions & 46 deletions test/simple/test-net-server-max-connections.js
Expand Up @@ -42,9 +42,7 @@ var server = net.createServer(function(connection) {
});

server.listen(common.PORT, function() {
for (var i = 0; i < N; i++) {
makeConnection(i);
}
makeConnection(0);
});

server.maxConnections = N / 2;
Expand All @@ -53,50 +51,54 @@ console.error('server.maxConnections = %d', server.maxConnections);


function makeConnection(index) {
setTimeout(function() {
var c = net.createConnection(common.PORT);
var gotData = false;

c.on('end', function() { c.end(); });

c.on('data', function(b) {
gotData = true;
assert.ok(0 < b.length);
});

c.on('error', function(e) {
console.error('error %d: %s', index, e);
});

c.on('close', function() {
console.error('closed %d', index);
closes++;

if (closes < N / 2) {
assert.ok(server.maxConnections <= index,
index +
' was one of the first closed connections ' +
'but shouldnt have been');
var c = net.createConnection(common.PORT);
var gotData = false;

c.on('connect', function() {
if (index + 1 < N) {
makeConnection(index + 1);
}
});

c.on('end', function() { c.end(); });

c.on('data', function(b) {
gotData = true;
assert.ok(0 < b.length);
});

c.on('error', function(e) {
console.error('error %d: %s', index, e);
});

c.on('close', function() {
console.error('closed %d', index);
closes++;

if (closes < N / 2) {
assert.ok(server.maxConnections <= index,
index +
' was one of the first closed connections ' +
'but shouldnt have been');
}

if (closes === N / 2) {
var cb;
console.error('calling wait callback.');
while (cb = waits.shift()) {
cb();
}

if (closes === N / 2) {
var cb;
console.error('calling wait callback.');
while (cb = waits.shift()) {
cb();
}
server.close();
}

if (index < server.maxConnections) {
assert.equal(true, gotData,
index + ' didn\'t get data, but should have');
} else {
assert.equal(false, gotData,
index + ' got data, but shouldn\'t have');
}
});
}, index);
server.close();
}

if (index < server.maxConnections) {
assert.equal(true, gotData,
index + ' didn\'t get data, but should have');
} else {
assert.equal(false, gotData,
index + ' got data, but shouldn\'t have');
}
});
}


Expand Down

0 comments on commit 8271800

Please sign in to comment.