mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 21:35:34 +00:00

Use assert.strictEqual instead of assert.equal in tests, manually convert types where necessary. PR-URL: https://github.com/nodejs/node/pull/10698 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
46 lines
1.1 KiB
JavaScript
46 lines
1.1 KiB
JavaScript
// Certs in NODE_EXTRA_CA_CERTS are used for TLS peer validation
|
|
|
|
'use strict';
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
|
|
const assert = require('assert');
|
|
const tls = require('tls');
|
|
const fork = require('child_process').fork;
|
|
const fs = require('fs');
|
|
|
|
if (process.env.CHILD) {
|
|
const copts = {
|
|
port: process.env.PORT,
|
|
checkServerIdentity: function() {},
|
|
};
|
|
const client = tls.connect(copts, function() {
|
|
client.end('hi');
|
|
});
|
|
return;
|
|
}
|
|
|
|
const options = {
|
|
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem'),
|
|
};
|
|
|
|
const server = tls.createServer(options, function(s) {
|
|
s.end('bye');
|
|
server.close();
|
|
}).listen(0, common.mustCall(function() {
|
|
const env = {
|
|
CHILD: 'yes',
|
|
PORT: this.address().port,
|
|
NODE_EXTRA_CA_CERTS: common.fixturesDir + '/keys/ca1-cert.pem',
|
|
};
|
|
|
|
fork(__filename, {env: env}).on('exit', common.mustCall(function(status) {
|
|
assert.strictEqual(status, 0, 'client did not succeed in connecting');
|
|
}));
|
|
}));
|