Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: update test/parallel/test-http-pipe-fs.js to use countdown #17346

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions test/parallel/test-http-pipe-fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ const common = require('../common');
const http = require('http');
const fs = require('fs');
const path = require('path');
const Countdown = require('../common/countdown');
const NUMBER_OF_STREAMS = 2;

const countdown = new Countdown(NUMBER_OF_STREAMS, () => server.close());

common.refreshTmpDir();

Expand All @@ -39,27 +43,23 @@ const server = http.createServer(common.mustCall(function(req, res) {
}, 2)).listen(0, function() {
http.globalAgent.maxSockets = 1;

for (let i = 0; i < 2; ++i) {
(function(i) {
const req = http.request({
port: server.address().port,
method: 'POST',
headers: {
'Content-Length': 5
}
}, function(res) {
res.on('end', function() {
console.error(`res${i} end`);
if (i === 2) {
server.close();
}
});
res.resume();
});
req.on('socket', function(s) {
console.error(`req${i} start`);
for (let i = 0; i < NUMBER_OF_STREAMS; ++i) {
const req = http.request({
port: server.address().port,
method: 'POST',
headers: {
'Content-Length': 5
}
}, function(res) {
res.on('end', function() {
console.error(`res${i + 1} end`);
countdown.dec();
});
req.end('12345');
}(i + 1));
res.resume();
});
req.on('socket', function(s) {
console.error(`req${i + 1} start`);
});
req.end('12345');
}
});