node/test/parallel/test-https-agent-disable-session-reuse.js
Jeremiah Senkpiel 52bae222a3 test: abstract skip functionality to common
The tap skipping output is so prevalent yet obscure in nature that we
ought to move it into it's own function in test/common.js

PR-URL: https://github.com/nodejs/node/pull/6697
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
2016-05-12 16:43:35 -04:00

60 lines
1.3 KiB
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
const TOTAL_REQS = 2;
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 clientSessions = [];
var serverRequests = 0;
const agent = new https.Agent({
maxCachedSessions: 0
});
const server = https.createServer(options, function(req, res) {
serverRequests++;
res.end('ok');
}).listen(common.PORT, function() {
var waiting = TOTAL_REQS;
function request() {
const options = {
agent: agent,
port: common.PORT,
rejectUnauthorized: false
};
https.request(options, function(res) {
clientSessions.push(res.socket.getSession());
res.resume();
res.on('end', function() {
if (--waiting !== 0)
return request();
server.close();
});
}).end();
}
request();
});
process.on('exit', function() {
assert.equal(serverRequests, TOTAL_REQS);
assert.equal(clientSessions.length, TOTAL_REQS);
assert.notEqual(clientSessions[0].toString('hex'),
clientSessions[1].toString('hex'));
});