Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDan VerWeire <dverweire@gmail.com>2012-01-30 19:04:20 +0400
committerisaacs <i@izs.me>2012-02-01 05:37:38 +0400
commit35b3d151949e023eee07c118bf89826519fee488 (patch)
tree12e911027f7f3a863983a94e3f03422b18f39954 /test
parentfa490f64971a38c98d74dc6b55b2d88dd1f6c463 (diff)
test: dgram-{broadcast,multicast}-multi-process : prevent false failures
* check exit code of child processes * wait 1000 ms to exit the child process * prefix log messages with [PARENT] or [CHILD] to help debugging * kill all child processes before exiting Conflicts: test/simple/test-dgram-multicast-multi-process.js
Diffstat (limited to 'test')
-rw-r--r--test/simple/test-dgram-broadcast-multi-process.js50
-rw-r--r--test/simple/test-dgram-multicast-multi-process.js50
2 files changed, 71 insertions, 29 deletions
diff --git a/test/simple/test-dgram-broadcast-multi-process.js b/test/simple/test-dgram-broadcast-multi-process.js
index 3c042243850..7ef40705814 100644
--- a/test/simple/test-dgram-broadcast-multi-process.js
+++ b/test/simple/test-dgram-broadcast-multi-process.js
@@ -46,8 +46,11 @@ if (process.argv[2] !== 'child') {
//exit the test if it doesn't succeed within TIMEOUT
timer = setTimeout(function () {
- console.error('Responses were not received within %d ms.', TIMEOUT);
- console.error('Fail');
+ console.error('[PARENT] Responses were not received within %d ms.', TIMEOUT);
+ console.error('[PARENT] Fail');
+
+ killChildren(workers);
+
process.exit(1);
}, TIMEOUT);
@@ -62,16 +65,20 @@ if (process.argv[2] !== 'child') {
//handle the death of workers
worker.on('exit', function (code, signal) {
//don't consider this the true death if the worker has finished successfully
- if (worker.isDone) {
+ //or if the exit code is 0
+ if (worker.isDone || code == 0) {
return;
}
dead += 1;
- console.error('Worker %d died. %d dead of %d', worker.pid, dead, listeners);
+ console.error('[PARENT] Worker %d died. %d dead of %d', worker.pid, dead, listeners);
if (dead === listeners) {
- console.error('All workers have died.');
- console.error('Fail');
+ console.error('[PARENT] All workers have died.');
+ console.error('[PARENT] Fail');
+
+ killChildren(workers);
+
process.exit(1);
}
});
@@ -91,12 +98,12 @@ if (process.argv[2] !== 'child') {
if (worker.messagesReceived.length === messages.length) {
done += 1;
worker.isDone = true;
- console.error('%d received %d messages total.', worker.pid,
+ console.error('[PARENT] %d received %d messages total.', worker.pid,
worker.messagesReceived.length);
}
if (done === listeners) {
- console.error('All workers have received the required number of '
+ console.error('[PARENT] All workers have received the required number of '
+ 'messages. Will now compare.');
Object.keys(workers).forEach(function (pid) {
@@ -113,7 +120,7 @@ if (process.argv[2] !== 'child') {
}
});
- console.error('%d received %d matching messges.', worker.pid
+ console.error('[PARENT] %d received %d matching messges.', worker.pid
, count);
assert.equal(count, messages.length
@@ -121,7 +128,8 @@ if (process.argv[2] !== 'child') {
});
clearTimeout(timer);
- console.error('Success');
+ console.error('[PARENT] Success');
+ killChildren(workers);
}
}
});
@@ -134,7 +142,7 @@ if (process.argv[2] !== 'child') {
sendSocket.setBroadcast(true);
sendSocket.on('close', function() {
- console.error('sendSocket closed');
+ console.error('[PARENT] sendSocket closed');
});
sendSocket.sendNext = function() {
@@ -150,12 +158,19 @@ if (process.argv[2] !== 'child') {
if (err) throw err;
- console.error('sent %s to %s:%s', util.inspect(buf.toString())
+ console.error('[PARENT] sent %s to %s:%s', util.inspect(buf.toString())
, LOCAL_BROADCAST_HOST, common.PORT);
process.nextTick(sendSocket.sendNext);
});
};
+
+ function killChildren(children) {
+ Object.keys(children).forEach(function(key) {
+ var child = children[key];
+ child.kill();
+ });
+ }
}
if (process.argv[2] === 'child') {
@@ -163,7 +178,7 @@ if (process.argv[2] === 'child') {
var listenSocket = dgram.createSocket('udp4');
listenSocket.on('message', function(buf, rinfo) {
- console.error('%s received %s from %j', process.pid
+ console.error('[CHILD] %s received %s from %j', process.pid
, util.inspect(buf.toString()), rinfo);
receivedMessages.push(buf);
@@ -171,14 +186,19 @@ if (process.argv[2] === 'child') {
process.send({ message : buf.toString() });
if (receivedMessages.length == messages.length) {
- process.nextTick(function() {
+ process.nextTick(function () {
listenSocket.close();
});
}
});
listenSocket.on('close', function() {
- process.exit();
+ //HACK: Wait to exit the process to ensure that the parent
+ //process has had time to receive all messages via process.send()
+ //This may be indicitave of some other issue.
+ setTimeout(function() {
+ process.exit();
+ }, 1000);
});
listenSocket.on('listening', function() {
diff --git a/test/simple/test-dgram-multicast-multi-process.js b/test/simple/test-dgram-multicast-multi-process.js
index 35ade382e33..d6f1c4793d2 100644
--- a/test/simple/test-dgram-multicast-multi-process.js
+++ b/test/simple/test-dgram-multicast-multi-process.js
@@ -46,8 +46,11 @@ if (process.argv[2] !== 'child') {
//exit the test if it doesn't succeed within TIMEOUT
timer = setTimeout(function () {
- console.error('Responses were not received within %d ms.', TIMEOUT);
- console.error('Fail');
+ console.error('[PARENT] Responses were not received within %d ms.', TIMEOUT);
+ console.error('[PARENT] Fail');
+
+ killChildren(workers);
+
process.exit(1);
}, TIMEOUT);
@@ -62,16 +65,21 @@ if (process.argv[2] !== 'child') {
//handle the death of workers
worker.on('exit', function (code, signal) {
//don't consider this the true death if the worker has finished successfully
- if (worker.isDone) {
+
+ //or if the exit code is 0
+ if (worker.isDone || code === 0) {
return;
}
dead += 1;
- console.error('Worker %d died. %d dead of %d', worker.pid, dead, listeners);
+ console.error('[PARENT] Worker %d died. %d dead of %d', worker.pid, dead, listeners);
if (dead === listeners) {
- console.error('All workers have died.');
- console.error('Fail');
+ console.error('[PARENT] All workers have died.');
+ console.error('[PARENT] Fail');
+
+ killChildren(workers);
+
process.exit(1);
}
});
@@ -91,12 +99,12 @@ if (process.argv[2] !== 'child') {
if (worker.messagesReceived.length === messages.length) {
done += 1;
worker.isDone = true;
- console.error('%d received %d messages total.', worker.pid,
+ console.error('[PARENT] %d received %d messages total.', worker.pid,
worker.messagesReceived.length);
}
if (done === listeners) {
- console.error('All workers have received the required number of '
+ console.error('[PARENT] All workers have received the required number of '
+ 'messages. Will now compare.');
Object.keys(workers).forEach(function (pid) {
@@ -113,7 +121,7 @@ if (process.argv[2] !== 'child') {
}
});
- console.error('%d received %d matching messages.', worker.pid
+ console.error('[PARENT] %d received %d matching messages.', worker.pid
, count);
assert.equal(count, messages.length
@@ -121,7 +129,8 @@ if (process.argv[2] !== 'child') {
});
clearTimeout(timer);
- console.error('Success');
+ console.error('[PARENT] Success');
+ killChildren(workers);
}
}
});
@@ -139,7 +148,7 @@ if (process.argv[2] !== 'child') {
sendSocket.setMulticastLoopback(true);
sendSocket.on('close', function() {
- console.error('sendSocket closed');
+ console.error('[PARENT] sendSocket closed');
});
sendSocket.sendNext = function() {
@@ -153,11 +162,18 @@ if (process.argv[2] !== 'child') {
sendSocket.send(buf, 0, buf.length,
common.PORT, LOCAL_BROADCAST_HOST, function(err) {
if (err) throw err;
- console.error('sent %s to %s:%s', util.inspect(buf.toString()),
+ console.error('[PARENT] sent %s to %s:%s', util.inspect(buf.toString()),
LOCAL_BROADCAST_HOST, common.PORT);
process.nextTick(sendSocket.sendNext);
});
};
+
+ function killChildren(children) {
+ Object.keys(children).forEach(function(key) {
+ var child = children[key];
+ child.kill();
+ });
+ }
}
if (process.argv[2] === 'child') {
@@ -165,7 +181,7 @@ if (process.argv[2] === 'child') {
var listenSocket = dgram.createSocket('udp4');
listenSocket.on('message', function(buf, rinfo) {
- console.error('%s received %s from %j', process.pid
+ console.error('[CHILD] %s received %s from %j', process.pid
,util.inspect(buf.toString()), rinfo);
receivedMessages.push(buf);
@@ -174,6 +190,7 @@ if (process.argv[2] === 'child') {
if (receivedMessages.length == messages.length) {
listenSocket.dropMembership(LOCAL_BROADCAST_HOST);
+
process.nextTick(function() { // TODO should be changed to below.
// listenSocket.dropMembership(LOCAL_BROADCAST_HOST, function() {
listenSocket.close();
@@ -182,7 +199,12 @@ if (process.argv[2] === 'child') {
});
listenSocket.on('close', function() {
- process.exit();
+ //HACK: Wait to exit the process to ensure that the parent
+ //process has had time to receive all messages via process.send()
+ //This may be indicitave of some other issue.
+ setTimeout(function () {
+ process.exit();
+ }, 1000);
});
listenSocket.on('listening', function() {