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.
55 lines
1.1 KiB
55 lines
1.1 KiB
'use strict';
|
|
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() {
|
|
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=%j', chunk.toString());
|
|
});
|
|
|
|
res.on('end', function() {
|
|
console.log('Response ended.');
|
|
});
|
|
|
|
res.on('aborted', function() {
|
|
console.log('Response aborted.');
|
|
});
|
|
|
|
res.socket.on('close', function() {
|
|
console.log('socket closed, but not res');
|
|
});
|
|
|
|
// it would be nice if this worked:
|
|
res.on('close', function() {
|
|
console.log('Response aborted');
|
|
responseClose = true;
|
|
});
|
|
});
|
|
});
|
|
|
|
|
|
process.on('exit', function() {
|
|
assert.ok(responseClose);
|
|
});
|
|
|