mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
786 B
35 lines
786 B
common = require("../common");
|
|
assert = common.assert
|
|
|
|
assert = require("assert");
|
|
http = require("http");
|
|
sys = require("sys");
|
|
|
|
|
|
body = "hello world\n";
|
|
|
|
server = http.createServer(function (req, res) {
|
|
common.error('req: ' + req.method);
|
|
res.writeHead(200, {"Content-Length": body.length});
|
|
res.end();
|
|
server.close();
|
|
});
|
|
|
|
var gotEnd = false;
|
|
|
|
server.listen(common.PORT, function () {
|
|
var client = http.createClient(common.PORT);
|
|
var request = client.request("HEAD", "/");
|
|
request.end();
|
|
request.addListener('response', function (response) {
|
|
common.error('response start');
|
|
response.addListener("end", function () {
|
|
common.error('response end');
|
|
gotEnd = true;
|
|
});
|
|
});
|
|
});
|
|
|
|
process.addListener('exit', function () {
|
|
assert.ok(gotEnd);
|
|
});
|
|
|