mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 03:45:25 +00:00

Use common.platformTimeout() to make test more reliable on Raspberry Pi. Fixes: https://github.com/nodejs/node/issues/2555 PR-URL: https://github.com/nodejs/node/pull/3968 Reviewed-By: Brendan Ashworth <brendan.ashworth@me.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Roman Klauke <romaaan.git@gmail.com>
41 lines
901 B
JavaScript
41 lines
901 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var options = {
|
|
method: 'GET',
|
|
port: common.PORT,
|
|
host: '127.0.0.1',
|
|
path: '/'
|
|
};
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
// this space intentionally left blank
|
|
});
|
|
|
|
server.listen(options.port, options.host, function() {
|
|
var req = http.request(options, function(res) {
|
|
// this space intentionally left blank
|
|
});
|
|
req.on('error', function() {
|
|
// this space is intentionally left blank
|
|
});
|
|
req.on('close', function() {
|
|
server.close();
|
|
});
|
|
|
|
var timeout_events = 0;
|
|
req.setTimeout(1);
|
|
req.on('timeout', function() {
|
|
timeout_events += 1;
|
|
});
|
|
setTimeout(function() {
|
|
req.destroy();
|
|
assert.equal(timeout_events, 1);
|
|
}, common.platformTimeout(100));
|
|
setTimeout(function() {
|
|
req.end();
|
|
}, common.platformTimeout(50));
|
|
});
|