mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
53ec358606
Add basic tests for providers when using OpenSSL 3.x. PR-URL: https://github.com/nodejs/node/pull/44148 Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
22 lines
667 B
JavaScript
22 lines
667 B
JavaScript
'use strict';
|
|
|
|
const common = require('../../common');
|
|
const { path: fixture } = require('../../common/fixtures');
|
|
const providers = require('./providers.cjs');
|
|
|
|
const assert = require('node:assert');
|
|
const { fork } = require('node:child_process');
|
|
const option = `--openssl-config=${fixture('openssl3-conf', 'legacy_provider_enabled.cnf')}`;
|
|
|
|
if (!process.execArgv.includes(option)) {
|
|
const cp = fork(__filename, { execArgv: [option] });
|
|
cp.on('exit', common.mustCall((code, signal) => {
|
|
assert.strictEqual(code, 0);
|
|
assert.strictEqual(signal, null);
|
|
}));
|
|
return;
|
|
}
|
|
|
|
providers.testProviderPresent('default');
|
|
providers.testProviderPresent('legacy');
|