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.
47 lines
984 B
47 lines
984 B
14 years ago
|
var common = require("../common");
|
||
|
var http = require("http");
|
||
|
var assert = require("assert");
|
||
|
|
||
|
var server = http.Server(function (req, res) {
|
||
|
console.log("Server accepted request.");
|
||
|
res.writeHead(200);
|
||
|
res.write("Part of my res.");
|
||
|
|
||
|
res.destroy();
|
||
|
});
|
||
|
|
||
|
var responseClose = false
|
||
|
|
||
|
server.listen(common.PORT, function() {
|
||
|
var client = http.get({
|
||
|
port: common.PORT,
|
||
|
headers: { connection: "keep-alive" }
|
||
|
|
||
|
}, function(res) {
|
||
|
server.close();
|
||
|
|
||
|
console.log("Got res: " + res.statusCode);
|
||
|
console.dir(res.headers);
|
||
|
|
||
|
res.on("data", function (chunk) {
|
||
|
console.log("Read " + chunk.length + " bytes");
|
||
|
console.log(chunk.toString());
|
||
|
});
|
||
|
|
||
|
res.on("end", function () {
|
||
|
console.log("Response ended.");
|
||
|
});
|
||
|
|
||
|
// it would be nice if this worked:
|
||
|
res.on("close", function () {
|
||
|
console.log("Response aborted");
|
||
|
responseClose = true;
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
|
||
|
|
||
|
process.on('exit', function() {
|
||
|
assert.ok(responseClose);
|
||
|
});
|