https: Use secureProtocol in Agent#getName
Refs: https://github.com/nodejs/node/issues/9324 PR-URL: https://github.com/nodejs/node/pull/9452 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
parent
da96843920
commit
a469f85653
@ -144,6 +144,10 @@ Agent.prototype.getName = function getName(options) {
|
|||||||
if (options.servername && options.servername !== options.host)
|
if (options.servername && options.servername !== options.host)
|
||||||
name += options.servername;
|
name += options.servername;
|
||||||
|
|
||||||
|
name += ':';
|
||||||
|
if (options.secureProtocol)
|
||||||
|
name += options.secureProtocol;
|
||||||
|
|
||||||
return name;
|
return name;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ const agent = new https.Agent();
|
|||||||
// empty options
|
// empty options
|
||||||
assert.strictEqual(
|
assert.strictEqual(
|
||||||
agent.getName({}),
|
agent.getName({}),
|
||||||
'localhost:::::::::'
|
'localhost::::::::::'
|
||||||
);
|
);
|
||||||
|
|
||||||
// pass all options arguments
|
// pass all options arguments
|
||||||
@ -33,5 +33,5 @@ const options = {
|
|||||||
|
|
||||||
assert.strictEqual(
|
assert.strictEqual(
|
||||||
agent.getName(options),
|
agent.getName(options),
|
||||||
'0.0.0.0:443:192.168.1.1:ca:cert:ciphers:key:pfx:false:localhost'
|
'0.0.0.0:443:192.168.1.1:ca:cert:ciphers:key:pfx:false:localhost:'
|
||||||
);
|
);
|
||||||
|
60
test/parallel/test-https-agent-secure-protocol.js
Normal file
60
test/parallel/test-https-agent-secure-protocol.js
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
'use strict';
|
||||||
|
const assert = require('assert');
|
||||||
|
const common = require('../common');
|
||||||
|
|
||||||
|
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'),
|
||||||
|
ca: fs.readFileSync(common.fixturesDir + '/keys/ca1-cert.pem')
|
||||||
|
};
|
||||||
|
|
||||||
|
const server = https.Server(options, function(req, res) {
|
||||||
|
res.writeHead(200);
|
||||||
|
res.end('hello world\n');
|
||||||
|
});
|
||||||
|
|
||||||
|
server.listen(0, common.mustCall(function() {
|
||||||
|
const port = this.address().port;
|
||||||
|
const globalAgent = https.globalAgent;
|
||||||
|
globalAgent.keepAlive = true;
|
||||||
|
https.get({
|
||||||
|
path: '/',
|
||||||
|
port: port,
|
||||||
|
ca: options.ca,
|
||||||
|
rejectUnauthorized: true,
|
||||||
|
servername: 'agent1',
|
||||||
|
secureProtocol: 'SSLv23_method'
|
||||||
|
}, common.mustCall(function(res) {
|
||||||
|
res.resume();
|
||||||
|
globalAgent.once('free', common.mustCall(function() {
|
||||||
|
https.get({
|
||||||
|
path: '/',
|
||||||
|
port: port,
|
||||||
|
ca: options.ca,
|
||||||
|
rejectUnauthorized: true,
|
||||||
|
servername: 'agent1',
|
||||||
|
secureProtocol: 'TLSv1_method'
|
||||||
|
}, common.mustCall(function(res) {
|
||||||
|
res.resume();
|
||||||
|
globalAgent.once('free', common.mustCall(function() {
|
||||||
|
// Verify that two keep-alived connections are created
|
||||||
|
// due to the different secureProtocol settings:
|
||||||
|
const keys = Object.keys(globalAgent.freeSockets);
|
||||||
|
assert.strictEqual(keys.length, 2);
|
||||||
|
assert.ok(keys[0].includes(':SSLv23_method'));
|
||||||
|
assert.ok(keys[1].includes(':TLSv1_method'));
|
||||||
|
globalAgent.destroy();
|
||||||
|
server.close();
|
||||||
|
}));
|
||||||
|
}));
|
||||||
|
}));
|
||||||
|
}));
|
||||||
|
}));
|
Loading…
x
Reference in New Issue
Block a user