mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 23:10:15 +00:00

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>
40 lines
920 B
JavaScript
40 lines
920 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
const server = http.Server(function(req, res) {
|
|
res.writeHead(200);
|
|
res.end('hello world\n');
|
|
});
|
|
|
|
let responses = 0;
|
|
const N = 4;
|
|
const M = 4;
|
|
|
|
server.listen(0, function() {
|
|
const port = this.address().port;
|
|
for (let i = 0; i < N; i++) {
|
|
setTimeout(function() {
|
|
for (let j = 0; j < M; j++) {
|
|
http.get({ port: port, path: '/' }, function(res) {
|
|
console.log('%d %d', responses, res.statusCode);
|
|
if (++responses === N * M) {
|
|
console.error('Received all responses, closing server');
|
|
server.close();
|
|
}
|
|
res.resume();
|
|
}).on('error', function(e) {
|
|
console.log('Error!', e);
|
|
process.exit(1);
|
|
});
|
|
}
|
|
}, i);
|
|
}
|
|
});
|
|
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(N * M, responses);
|
|
});
|