test: update test/parallel/test-http-pipe-fs.js to use countdown
PR-URL: https://github.com/nodejs/node/pull/17346 Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Anna Henningsen <anna@addaleax.net>
This commit is contained in:
parent
0f3fd79ee9
commit
fa072499a5
@ -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();
|
||||
|
||||
@ -39,8 +43,7 @@ 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) {
|
||||
for (let i = 0; i < NUMBER_OF_STREAMS; ++i) {
|
||||
const req = http.request({
|
||||
port: server.address().port,
|
||||
method: 'POST',
|
||||
@ -49,17 +52,14 @@ const server = http.createServer(common.mustCall(function(req, res) {
|
||||
}
|
||||
}, function(res) {
|
||||
res.on('end', function() {
|
||||
console.error(`res${i} end`);
|
||||
if (i === 2) {
|
||||
server.close();
|
||||
}
|
||||
console.error(`res${i + 1} end`);
|
||||
countdown.dec();
|
||||
});
|
||||
res.resume();
|
||||
});
|
||||
req.on('socket', function(s) {
|
||||
console.error(`req${i} start`);
|
||||
console.error(`req${i + 1} start`);
|
||||
});
|
||||
req.end('12345');
|
||||
}(i + 1));
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user