mirror of https://github.com/lukechilds/node.git
Ryan Dahl
14 years ago
2 changed files with 55 additions and 4 deletions
@ -0,0 +1,46 @@ |
|||
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); |
|||
}); |
Loading…
Reference in new issue