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

Commit

Permalink
Bugfix: HTTP client automatically reconnecting
Browse files Browse the repository at this point in the history
Test case by tlynn.
  • Loading branch information
ry committed Jan 27, 2010
1 parent cd6397c commit 30b0522
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions test/mjsunit/test-http-client-reconnect-bug.js
@@ -0,0 +1,42 @@
process.mixin(require("./common"));

var tcp = require("tcp"),
sys = require("sys"),
http = require("http");

var PORT = 2143;

var errorCount = 0;
var eofCount = 0;

var server = tcp.createServer(function(socket) {
socket.close();
});
server.listen(PORT);

var client = http.createClient(PORT);

client.addListener("error", function() {
sys.puts("ERROR!");
errorCount++;
});

client.addListener("eof", function() {
sys.puts("EOF!");
eofCount++;
});

var request = client.request("GET", "/", {"host": "localhost"});
request.finish(function(response) {
sys.puts("STATUS: " + response.statusCode);
});

setTimeout(function () {
server.close();
}, 500);


process.addListener('exit', function () {
assert.equal(0, errorCount);
assert.equal(1, eofCount);
});

0 comments on commit 30b0522

Please sign in to comment.