mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
3d2aef3979
Use assert.strictEqual instead of assert.equal in tests, manually convert types where necessary. PR-URL: https://github.com/nodejs/node/pull/10698 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
// Simple test of Node's HTTP ServerResponse.statusCode
|
|
// ServerResponse.prototype.statusCode
|
|
|
|
let testsComplete = 0;
|
|
const tests = [200, 202, 300, 404, 451, 500];
|
|
let testIdx = 0;
|
|
|
|
const s = http.createServer(function(req, res) {
|
|
const t = tests[testIdx];
|
|
res.writeHead(t, {'Content-Type': 'text/plain'});
|
|
console.log('--\nserver: statusCode after writeHead: ' + res.statusCode);
|
|
assert.strictEqual(res.statusCode, t);
|
|
res.end('hello world\n');
|
|
});
|
|
|
|
s.listen(0, nextTest);
|
|
|
|
|
|
function nextTest() {
|
|
if (testIdx + 1 === tests.length) {
|
|
return s.close();
|
|
}
|
|
const test = tests[testIdx];
|
|
|
|
http.get({ port: s.address().port }, function(response) {
|
|
console.log('client: expected status: ' + test);
|
|
console.log('client: statusCode: ' + response.statusCode);
|
|
assert.strictEqual(response.statusCode, test);
|
|
response.on('end', function() {
|
|
testsComplete++;
|
|
testIdx += 1;
|
|
nextTest();
|
|
});
|
|
response.resume();
|
|
});
|
|
}
|
|
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(5, testsComplete);
|
|
});
|