node/test/parallel/test-https-agent.js
jpaulptr cf31eb7532
test: use common/fixtures in test-https-agent
PR-URL: https://github.com/nodejs/node/pull/15941
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2017-11-28 13:10:15 +09:00

51 lines
1 KiB
JavaScript

'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const fixtures = require('../common/fixtures');
const assert = require('assert');
const https = require('https');
const options = {
key: fixtures.readKey('agent1-key.pem'),
cert: fixtures.readKey('agent1-cert.pem')
};
const server = https.Server(options, function(req, res) {
res.writeHead(200);
res.end('hello world\n');
});
let responses = 0;
const N = 4;
const M = 4;
server.listen(0, function() {
for (let i = 0; i < N; i++) {
setTimeout(function() {
for (let 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);
});