node/test/parallel/test-http-client-timeout-with-data.js
Rich Trott 20acc60615 test: use platform-based timeout for reliability
test-http-client-timeout-with-data fails on Raspberry Pi in CI from time
to time.

Use a platform-based timeout to improve reliability.

PR-URL: https://github.com/nodejs/node/pull/4015
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Roman Reiss <me@silverwind.io>
2015-11-26 12:28:22 -08:00

48 lines
1.0 KiB
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');
var ntimeouts = 0;
var nchunks = 0;
process.on('exit', function() {
assert.equal(ntimeouts, 1);
assert.equal(nchunks, 2);
});
const options = {
method: 'GET',
port: common.PORT,
host: '127.0.0.1',
path: '/'
};
const server = http.createServer(function(req, res) {
res.writeHead(200, {'Content-Length':'2'});
res.write('*');
setTimeout(function() { res.end('*'); }, common.platformTimeout(100));
});
server.listen(options.port, options.host, function() {
const req = http.request(options, onresponse);
req.end();
function onresponse(res) {
req.setTimeout(50, function() {
assert.equal(nchunks, 1); // should have received the first chunk by now
ntimeouts++;
});
res.on('data', function(data) {
assert.equal('' + data, '*');
nchunks++;
});
res.on('end', function() {
assert.equal(nchunks, 2);
server.close();
});
}
});