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

Commit

Permalink
Adjust passing-FDs test to wait until socket is really writeable
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsklar authored and ry committed Jan 22, 2010
1 parent 2788064 commit 6f738d6
Showing 1 changed file with 29 additions and 25 deletions.
54 changes: 29 additions & 25 deletions test/mjsunit/test-net-fd-passing.js
Expand Up @@ -12,43 +12,47 @@ function fdPassingTest(path, port) {
var message = "beep toot";
var expectedData = ["[greeting] " + greeting, "[echo] " + message];

puts(fixturesDir);
var receiverArgs = [fixturesDir + "/net-fd-passing-receiver.js", path, greeting];
var receiver = process.createChildProcess(process.ARGV[0], receiverArgs);

var initializeSender = function() {
var fdHighway = new net.Socket();
fdHighway.connect(path);

var sender = net.createServer(function(socket) {
fdHighway.sendFD(socket);
socket.flush();
socket.forceClose(); // want to close() the fd, not shutdown()
});
fdHighway.addListener("connect", function() {
var sender = net.createServer(function(socket) {
fdHighway.sendFD(socket);
socket.flush();
socket.forceClose(); // want to close() the fd, not shutdown()
});

sender.addListener("listening", function() {
var client = net.createConnection(port);
sender.addListener("listening", function() {
var client = net.createConnection(port);

client.addListener("connect", function() {
client.send(message);
});
client.addListener("connect", function() {
client.send(message);
});

client.addListener("data", function(data) {
assert.equal(expectedData[0], data);
if (expectedData.length > 1) {
expectedData.shift();
}
else {
// time to shut down
fdHighway.close();
sender.close();
client.forceClose();
}
client.addListener("data", function(data) {
assert.equal(expectedData[0], data);
if (expectedData.length > 1) {
expectedData.shift();
}
else {
// time to shut down
fdHighway.close();
sender.close();
client.forceClose();
}
});
});

tests_run += 1;
sender.listen(port);
});

tests_run += 1;
sender.listen(port);
fdHighway.connect(path);


};

receiver.addListener("output", function(data) {
Expand Down

0 comments on commit 6f738d6

Please sign in to comment.