mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
a3cd8ed168
test-http-server-consumed-timeout will fail if the host is sufficiently loaded that a 25ms interval takes more than 200ms to be invoked. Skip the test in that situation. PR-URL: https://github.com/nodejs/node/pull/15688 Fixes: https://github.com/nodejs/node/issues/14312 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
|
|
let time = Date.now();
|
|
let intervalWasInvoked = false;
|
|
const TIMEOUT = common.platformTimeout(200);
|
|
|
|
const server = http.createServer((req, res) => {
|
|
server.close();
|
|
|
|
res.writeHead(200);
|
|
res.flushHeaders();
|
|
|
|
req.setTimeout(TIMEOUT, () => {
|
|
if (!intervalWasInvoked)
|
|
return common.skip('interval was not invoked quickly enough for test');
|
|
common.fail('Request timeout should not fire');
|
|
});
|
|
|
|
req.resume();
|
|
req.once('end', () => {
|
|
res.end();
|
|
});
|
|
});
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
const req = http.request({
|
|
port: server.address().port,
|
|
method: 'POST'
|
|
}, (res) => {
|
|
const interval = setInterval(() => {
|
|
intervalWasInvoked = true;
|
|
// If machine is busy enough that the interval takes more than TIMEOUT ms
|
|
// to be invoked, skip the test.
|
|
const now = Date.now();
|
|
if (now - time > TIMEOUT)
|
|
return common.skip('interval is not invoked quickly enough for test');
|
|
time = now;
|
|
req.write('a');
|
|
}, common.platformTimeout(25));
|
|
setTimeout(() => {
|
|
clearInterval(interval);
|
|
req.end();
|
|
}, TIMEOUT);
|
|
});
|
|
req.write('.');
|
|
}));
|