node/test/parallel/test-http-readable-data-event.js
Matteo Collina 5a8fcd0d94 test: fixed flaky test-http-readable-data-event
Fixes: https://github.com/nodejs/node/issues/19905

PR-URL: https://github.com/nodejs/node/pull/19931
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
2018-04-12 09:55:15 +02:00

59 lines
1.3 KiB
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');
const helloWorld = 'Hello World!';
const helloAgainLater = 'Hello again later!';
let next = null;
const server = http.createServer((req, res) => {
res.writeHead(200, {
'Content-Length': '' + (helloWorld.length + helloAgainLater.length)
});
// we need to make sure the data is flushed
// before writing again
next = () => {
res.end(helloAgainLater);
next = () => {};
};
res.write(helloWorld);
}).listen(0, function() {
const opts = {
hostname: 'localhost',
port: server.address().port,
path: '/'
};
const expectedData = [helloWorld, helloAgainLater];
const expectedRead = [helloWorld, null, helloAgainLater, null];
const req = http.request(opts, (res) => {
res.on('error', common.mustNotCall());
res.on('readable', common.mustCall(() => {
let data;
do {
data = res.read();
assert.strictEqual(data, expectedRead.shift());
next();
} while (data !== null);
}, 2));
res.setEncoding('utf8');
res.on('data', common.mustCall((data) => {
assert.strictEqual(data, expectedData.shift());
}, 2));
res.on('end', common.mustCall(() => {
server.close();
}));
});
req.end();
});