Skip to content

Commit

Permalink
Test case for net.Server.listenFD()
Browse files Browse the repository at this point in the history
  • Loading branch information
pgriess authored and ry committed Jun 15, 2010
1 parent 1ffdad0 commit c9dde72
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions test/simple/test-listen-fd.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
// Verify that net.Server.listenFD() can be used to accept connections on an
// already-bound, already-listening socket.

require('../common');
http = require('http');
netBinding = process.binding('net');

// Select a random port for testing
var PORT = 5000 + Math.floor(Math.random() * 1000);

// Create an server and set it listening on a socket bound to PORT
var gotRequest = false;
var srv = http.createServer(function(req, resp) {
gotRequest = true;

resp.writeHead(200);
resp.end();

srv.close();
});

var fd = netBinding.socket('tcp4');
netBinding.bind(fd, PORT, '127.0.0.1');
netBinding.listen(fd, 128);
srv.listenFD(fd);

// Make an HTTP request to the server above
var hc = http.createClient(PORT, '127.0.0.1');
hc.request('/').end();

// Verify that we're exiting after having received an HTTP request
process.addListener('exit', function() {
assert.ok(gotRequest);
});

0 comments on commit c9dde72

Please sign in to comment.