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
680 B
35 lines
680 B
14 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
var http = require('http');
|
||
|
|
||
|
var gotEnd = false;
|
||
|
|
||
|
var server = http.createServer(function(req, res) {
|
||
|
res.writeHead(200);
|
||
|
res.write('a');
|
||
|
|
||
|
req.on('close', function() {
|
||
|
console.error("aborted");
|
||
|
gotEnd = true;
|
||
|
});
|
||
|
});
|
||
|
server.listen(common.PORT);
|
||
|
|
||
|
server.addListener('listening', function() {
|
||
|
console.error("make req");
|
||
|
http.get({
|
||
|
port: common.PORT
|
||
|
}, function(res) {
|
||
|
console.error("got res");
|
||
|
res.on('data', function(data) {
|
||
|
console.error("destroy res");
|
||
|
res.destroy();
|
||
|
server.close();
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
|
||
|
process.on('exit', function() {
|
||
|
assert.ok(gotEnd);
|
||
|
});
|