nodejs/test/parallel/test-http-eof-on-connect.js

20 lines
574 B
JavaScript
Raw Normal View History

'use strict';
require('../common');
2010-12-04 15:20:34 -08:00
var net = require('net');
var http = require('http');
2010-01-11 17:04:40 +11:00
// This is a regression test for https://github.com/joyent/node/issues/44
2010-01-11 17:04:40 +11:00
// It is separate from test-http-malformed-request.js because it is only
// reproduceable on the first packet on the first connection to a server.
var server = http.createServer(function(req, res) {});
server.listen(0);
2010-01-11 17:04:40 +11:00
server.on('listening', function() {
net.createConnection(this.address().port).on('connect', function() {
this.destroy();
}).on('close', function() {
server.close();
});
});