mirror of
https://github.com/nodejs/node.git
synced 2025-04-29 22:40:57 +00:00

This helps to prevent issues where a failed test can keep a bound socket open long enough to cause other tests to fail with EADDRINUSE because the same port number is used. PR-URL: https://github.com/nodejs/node/pull/7045 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
55 lines
1.1 KiB
JavaScript
55 lines
1.1 KiB
JavaScript
'use strict';
|
|
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(0, function() {
|
|
http.get({
|
|
port: this.address().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);
|
|
});
|