mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
38 lines
885 B
JavaScript
38 lines
885 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var server = http.Server(function(req, res) {
|
|
res.writeHead(200);
|
|
res.end('hello world\n');
|
|
});
|
|
|
|
var responses = 0;
|
|
var N = 10;
|
|
var M = 10;
|
|
|
|
server.listen(common.PORT, function() {
|
|
for (var i = 0; i < N; i++) {
|
|
setTimeout(function() {
|
|
for (var j = 0; j < M; j++) {
|
|
http.get({ port: common.PORT, path: '/' }, function(res) {
|
|
console.log('%d %d', responses, res.statusCode);
|
|
if (++responses == N * M) {
|
|
console.error('Received all responses, closing server');
|
|
server.close();
|
|
}
|
|
res.resume();
|
|
}).on('error', function(e) {
|
|
console.log('Error!', e);
|
|
process.exit(1);
|
|
});
|
|
}
|
|
}, i);
|
|
}
|
|
});
|
|
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(N * M, responses);
|
|
});
|