mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
// Setting NODE_EXTRA_CA_CERTS to non-existent file emits a warning
|
|
|
|
'use strict';
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const assert = require('assert');
|
|
const fixtures = require('../common/fixtures');
|
|
const fork = require('child_process').fork;
|
|
const tls = require('tls');
|
|
|
|
if (process.env.CHILD) {
|
|
// This will try to load the extra CA certs, and emit a warning when it fails.
|
|
return tls.createServer({});
|
|
}
|
|
|
|
const env = Object.assign({}, process.env, {
|
|
CHILD: 'yes',
|
|
NODE_EXTRA_CA_CERTS: `${fixtures.fixturesDir}/no-such-file-exists`,
|
|
});
|
|
|
|
const opts = {
|
|
env: env,
|
|
silent: true,
|
|
};
|
|
let stderr = '';
|
|
|
|
fork(__filename, opts)
|
|
.on('exit', common.mustCall(function(status) {
|
|
assert.strictEqual(status, 0, 'client did not succeed in connecting');
|
|
}))
|
|
.on('close', common.mustCall(function() {
|
|
const re = /Warning: Ignoring extra certs from.*no-such-file-exists.* load failed:.*No such file or directory/;
|
|
assert(re.test(stderr), stderr);
|
|
}))
|
|
.stderr.setEncoding('utf8').on('data', function(str) {
|
|
stderr += str;
|
|
});
|
|
|