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.
43 lines
808 B
43 lines
808 B
12 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
|
||
|
var http = require('http');
|
||
|
|
||
|
var port = common.PORT;
|
||
|
var serverRequests = 0;
|
||
|
var clientRequests = 0;
|
||
|
|
||
|
var server = http.createServer(function(req, res) {
|
||
|
serverRequests++;
|
||
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
||
|
res.end('OK');
|
||
|
});
|
||
|
|
||
|
server.listen(port, function() {
|
||
|
function callback(){}
|
||
|
|
||
|
var req = http.request({
|
||
|
port: port,
|
||
|
path: '/',
|
||
|
agent: false
|
||
|
}, function(res) {
|
||
|
req.clearTimeout(callback);
|
||
|
|
||
|
res.on('end', function() {
|
||
|
clientRequests++;
|
||
|
server.close();
|
||
|
})
|
||
|
|
||
|
res.resume();
|
||
|
});
|
||
|
|
||
|
// Overflow signed int32
|
||
|
req.setTimeout(0xffffffff, callback);
|
||
|
req.end();
|
||
|
});
|
||
|
|
||
|
process.once('exit', function() {
|
||
|
assert.equal(clientRequests, 1);
|
||
|
assert.equal(serverRequests, 1);
|
||
|
});
|