mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
f29762f4dd
Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
'use strict';
|
|
// This tests setTimeout() by having multiple clients connecting and sending
|
|
// data in random intervals. Clients are also randomly disconnecting until there
|
|
// are no more clients left. If no false timeout occurs, this test has passed.
|
|
var common = require('../common'),
|
|
assert = require('assert'),
|
|
http = require('http'),
|
|
server = http.createServer(),
|
|
connections = 0;
|
|
|
|
server.on('request', function(req, res) {
|
|
req.socket.setTimeout(1000);
|
|
req.socket.on('timeout', function() {
|
|
throw new Error('Unexpected timeout');
|
|
});
|
|
req.on('end', function() {
|
|
connections--;
|
|
res.writeHead(200);
|
|
res.end('done\n');
|
|
if (connections == 0) {
|
|
server.close();
|
|
}
|
|
});
|
|
req.resume();
|
|
});
|
|
|
|
server.listen(common.PORT, '127.0.0.1', function() {
|
|
for (var i = 0; i < 10; i++) {
|
|
connections++;
|
|
|
|
setTimeout(function() {
|
|
var request = http.request({
|
|
port: common.PORT,
|
|
method: 'POST',
|
|
path: '/'
|
|
});
|
|
|
|
function ping() {
|
|
var nextPing = (Math.random() * 900).toFixed();
|
|
if (nextPing > 600) {
|
|
request.end();
|
|
return;
|
|
}
|
|
request.write('ping');
|
|
setTimeout(ping, nextPing);
|
|
}
|
|
ping();
|
|
}, i * 50);
|
|
}
|
|
});
|