mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 20:08:02 +00:00

PR-URL: https://github.com/nodejs/node/pull/10389 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
25 lines
600 B
JavaScript
25 lines
600 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
// Check ca option can contain concatenated certs by prepending an unrelated
|
|
// non-CA cert and showing that agent6's CA root is still found.
|
|
|
|
const join = require('path').join;
|
|
const {
|
|
assert, connect, keys
|
|
} = require(join(common.fixturesDir, 'tls-connect'))();
|
|
|
|
connect({
|
|
client: {
|
|
checkServerIdentity: (servername, cert) => { },
|
|
ca: keys.agent1.cert + '\n' + keys.agent6.ca,
|
|
},
|
|
server: {
|
|
cert: keys.agent6.cert,
|
|
key: keys.agent6.key,
|
|
},
|
|
}, function(err, pair, cleanup) {
|
|
assert.ifError(err);
|
|
return cleanup();
|
|
});
|