Skip to content

Commit

Permalink
test: update test-http-response-multiheaders to use countdown
Browse files Browse the repository at this point in the history
PR-URL: #17419
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jon Moss <me@jonathanmoss.me>
  • Loading branch information
hmammedzadeh authored and gibfahn committed Dec 20, 2017
1 parent 0813461 commit 181db33
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions test/parallel/test-http-response-multiheaders.js
Expand Up @@ -3,6 +3,7 @@
const common = require('../common');
const http = require('http');
const assert = require('assert');
const Countdown = require('../common/countdown');

// Test that certain response header fields do not repeat.
// 'content-length' should also be in this list but it is
Expand All @@ -27,6 +28,7 @@ const norepeat = [
'age',
'expires'
];
const runCount = 2;

const server = http.createServer(function(req, res) {
const num = req.headers['x-num'];
Expand All @@ -47,8 +49,8 @@ const server = http.createServer(function(req, res) {
});

server.listen(0, common.mustCall(function() {
let count = 0;
for (let n = 1; n <= 2; n++) {
const countdown = new Countdown(runCount, () => server.close());
for (let n = 1; n <= runCount; n++) {
// this runs twice, the first time, the server will use
// setHeader, the second time it uses writeHead. The
// result on the client side should be the same in
Expand All @@ -58,7 +60,7 @@ server.listen(0, common.mustCall(function() {
http.get(
{ port: this.address().port, headers: { 'x-num': n } },
common.mustCall(function(res) {
if (++count === 2) server.close();
countdown.dec();
for (const name of norepeat) {
assert.strictEqual(res.headers[name], 'A');
}
Expand Down

0 comments on commit 181db33

Please sign in to comment.