Skip to content

Commit

Permalink
test: use Countdown in http test
Browse files Browse the repository at this point in the history
PR-URL: #17506
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By: Jon Moss <me@jonathanmoss.me>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
idandagan1 authored and gibfahn committed Dec 20, 2017
1 parent fdb216a commit ce060b7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/parallel/test-http-incoming-pipelined-socket-destroy.js
Expand Up @@ -21,11 +21,13 @@

'use strict';
const common = require('../common');
const Countdown = require('../common/countdown');

const http = require('http');
const net = require('net');

const seeds = [ 3, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4 ];
const countdown = new Countdown(seeds.length, () => server.close());

// Set up some timing issues where sockets can be destroyed
// via either the req or res.
Expand Down Expand Up @@ -72,11 +74,8 @@ function generator(seeds) {

server.listen(0, common.mustCall(function() {
const client = net.connect({ port: this.address().port });
let done = 0;
server.on('requestDone', function() {
if (++done === seeds.length) {
server.close();
}
countdown.dec();
});

// immediately write the pipelined requests.
Expand Down

0 comments on commit ce060b7

Please sign in to comment.