mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 22:50:18 +00:00

On line 40: replace '==' with '===' On line 52: replace 'assert.equal' with 'assert.strictEqual' Added some comments. Changed 'var' to 'const' where possible. Replaced console.log(res.statusCode); with and assertion. Rather than logging the https request status on every loop it will now assert the https status is correct on every loop. Changed the error listener to throw the error rather than log it. PR-URL: https://github.com/nodejs/node/pull/8517 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
54 lines
1.1 KiB
JavaScript
54 lines
1.1 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
const https = require('https');
|
|
|
|
const fs = require('fs');
|
|
|
|
const options = {
|
|
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
|
|
};
|
|
|
|
|
|
const server = https.Server(options, function(req, res) {
|
|
res.writeHead(200);
|
|
res.end('hello world\n');
|
|
});
|
|
|
|
|
|
var responses = 0;
|
|
const N = 4;
|
|
const M = 4;
|
|
|
|
|
|
server.listen(0, function() {
|
|
for (var i = 0; i < N; i++) {
|
|
setTimeout(function() {
|
|
for (var j = 0; j < M; j++) {
|
|
https.get({
|
|
path: '/',
|
|
port: server.address().port,
|
|
rejectUnauthorized: false
|
|
}, function(res) {
|
|
res.resume();
|
|
assert.strictEqual(res.statusCode, 200);
|
|
if (++responses === N * M) server.close();
|
|
}).on('error', function(e) {
|
|
throw e;
|
|
});
|
|
}
|
|
}, i);
|
|
}
|
|
});
|
|
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(N * M, responses);
|
|
});
|