test: use Countdown in http test

PR-URL: https://github.com/nodejs/node/pull/17436
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By: Jon Moss <me@jonathanmoss.me>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Mithun Sasidharan 2017-12-03 13:42:02 +05:30 committed by Tobias Nießen
parent e18390032e
commit 90b257eafe
No known key found for this signature in database
GPG Key ID: 718207F8FD156B70

View File

@ -3,6 +3,7 @@
const common = require('../common');
const http = require('http');
const assert = require('assert');
const Countdown = require('../common/countdown');
const MAX_COUNT = 2;
@ -24,7 +25,7 @@ const server = http.createServer((req, res) => {
res.end('ok');
});
let count = 0;
const countdown = new Countdown(MAX_COUNT, () => server.close());
server.listen(0, common.mustCall(() => {
for (let n = 1; n <= MAX_COUNT; n++) {
@ -40,13 +41,7 @@ server.listen(0, common.mustCall(() => {
).on('error', common.mustCall((err) => {
assert(/^Parse Error/.test(err.message));
assert.strictEqual(err.code, 'HPE_UNEXPECTED_CONTENT_LENGTH');
count++;
if (count === MAX_COUNT)
server.close();
countdown.dec();
}));
}
}));
process.on('exit', () => {
assert.strictEqual(count, MAX_COUNT);
});