test: update http test to use Countdown
PR-URL: https://github.com/nodejs/node/pull/17477 Refs: https://github.com/nodejs/node/issues/17169 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Jon Moss <me@jonathanmoss.me>
This commit is contained in:
parent
6707903fae
commit
07549c6a91
@ -23,19 +23,19 @@
|
|||||||
require('../common');
|
require('../common');
|
||||||
const assert = require('assert');
|
const assert = require('assert');
|
||||||
const http = require('http');
|
const http = require('http');
|
||||||
|
const Countdown = require('../common/countdown');
|
||||||
|
|
||||||
// Simple test of Node's HTTP ServerResponse.statusCode
|
// Simple test of Node's HTTP ServerResponse.statusCode
|
||||||
// ServerResponse.prototype.statusCode
|
// ServerResponse.prototype.statusCode
|
||||||
|
|
||||||
let testsComplete = 0;
|
|
||||||
const tests = [200, 202, 300, 404, 451, 500];
|
const tests = [200, 202, 300, 404, 451, 500];
|
||||||
let testIdx = 0;
|
let test;
|
||||||
|
const countdown = new Countdown(tests.length, () => s.close());
|
||||||
|
|
||||||
const s = http.createServer(function(req, res) {
|
const s = http.createServer(function(req, res) {
|
||||||
const t = tests[testIdx];
|
res.writeHead(test, { 'Content-Type': 'text/plain' });
|
||||||
res.writeHead(t, { 'Content-Type': 'text/plain' });
|
|
||||||
console.log(`--\nserver: statusCode after writeHead: ${res.statusCode}`);
|
console.log(`--\nserver: statusCode after writeHead: ${res.statusCode}`);
|
||||||
assert.strictEqual(res.statusCode, t);
|
assert.strictEqual(res.statusCode, test);
|
||||||
res.end('hello world\n');
|
res.end('hello world\n');
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -43,25 +43,16 @@ s.listen(0, nextTest);
|
|||||||
|
|
||||||
|
|
||||||
function nextTest() {
|
function nextTest() {
|
||||||
if (testIdx + 1 === tests.length) {
|
test = tests.shift();
|
||||||
return s.close();
|
|
||||||
}
|
|
||||||
const test = tests[testIdx];
|
|
||||||
|
|
||||||
http.get({ port: s.address().port }, function(response) {
|
http.get({ port: s.address().port }, function(response) {
|
||||||
console.log(`client: expected status: ${test}`);
|
console.log(`client: expected status: ${test}`);
|
||||||
console.log(`client: statusCode: ${response.statusCode}`);
|
console.log(`client: statusCode: ${response.statusCode}`);
|
||||||
assert.strictEqual(response.statusCode, test);
|
assert.strictEqual(response.statusCode, test);
|
||||||
response.on('end', function() {
|
response.on('end', function() {
|
||||||
testsComplete++;
|
if (countdown.dec())
|
||||||
testIdx += 1;
|
|
||||||
nextTest();
|
nextTest();
|
||||||
});
|
});
|
||||||
response.resume();
|
response.resume();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
process.on('exit', function() {
|
|
||||||
assert.strictEqual(5, testsComplete);
|
|
||||||
});
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user