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.
44 lines
1.0 KiB
44 lines
1.0 KiB
10 years ago
|
'use strict';
|
||
12 years ago
|
// https://github.com/joyent/node/issues/4948
|
||
|
|
||
|
var common = require('../common');
|
||
|
var http = require('http');
|
||
|
|
||
|
var reqCount = 0;
|
||
10 years ago
|
var server = http.createServer(function(serverReq, serverRes) {
|
||
12 years ago
|
if (reqCount) {
|
||
|
serverRes.end();
|
||
|
server.close();
|
||
|
return;
|
||
|
}
|
||
|
reqCount = 1;
|
||
|
|
||
|
|
||
|
// normally the use case would be to call an external site
|
||
|
// does not require connecting locally or to itself to fail
|
||
10 years ago
|
var r = http.request({hostname: 'localhost',
|
||
|
port: common.PORT}, function(res) {
|
||
12 years ago
|
// required, just needs to be in the client response somewhere
|
||
10 years ago
|
serverRes.end();
|
||
12 years ago
|
|
||
|
// required for test to fail
|
||
|
res.on('data', function(data) { });
|
||
|
|
||
|
});
|
||
|
r.on('error', function(e) {});
|
||
|
r.end();
|
||
|
|
||
|
serverRes.write('some data');
|
||
|
}).listen(common.PORT);
|
||
|
|
||
|
// simulate a client request that closes early
|
||
|
var net = require('net');
|
||
|
|
||
|
var sock = new net.Socket();
|
||
|
sock.connect(common.PORT, 'localhost');
|
||
|
|
||
|
sock.on('connect', function() {
|
||
|
sock.write('GET / HTTP/1.1\r\n\r\n');
|
||
|
sock.end();
|
||
10 years ago
|
});
|