11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../../common'); 41cb0ef41Sopenharmony_ciconst { path: fixture } = require('../../common/fixtures'); 51cb0ef41Sopenharmony_ciconst providers = require('./providers.cjs'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciconst assert = require('node:assert'); 81cb0ef41Sopenharmony_ciconst { fork } = require('node:child_process'); 91cb0ef41Sopenharmony_ciconst option = `--openssl-config=${fixture('openssl3-conf', 'legacy_provider_inactive.cnf')}`; 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_ciif (!process.execArgv.includes(option)) { 121cb0ef41Sopenharmony_ci const cp = fork(__filename, { execArgv: [option] }); 131cb0ef41Sopenharmony_ci cp.on('exit', common.mustCall((code, signal) => { 141cb0ef41Sopenharmony_ci assert.strictEqual(code, 0); 151cb0ef41Sopenharmony_ci assert.strictEqual(signal, null); 161cb0ef41Sopenharmony_ci })); 171cb0ef41Sopenharmony_ci return; 181cb0ef41Sopenharmony_ci} 191cb0ef41Sopenharmony_ci 201cb0ef41Sopenharmony_ciproviders.testProviderPresent('default'); 211cb0ef41Sopenharmony_ciproviders.testProviderAbsent('legacy'); 22