From 4b927a02fdfa85cb1157a9ef4b72ffb19ec0642b Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Mon, 20 Dec 2021 16:04:32 +0000 Subject: [PATCH] Issue #3251125 by Beakerboy, daffie, mondrake: Do not uninstall the database driver module within installer tests --- .../Installer/InstallerExistingConfigTestBase.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTestBase.php b/core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTestBase.php index fdd63a95b3a3..8a6a9308fcaa 100644 --- a/core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTestBase.php +++ b/core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigTestBase.php @@ -4,6 +4,7 @@ use Drupal\Component\Serialization\Yaml; use Drupal\Core\Archiver\ArchiveTar; +use Drupal\Core\Database\Database; use Drupal\Core\Installer\Form\SelectProfileForm; /** @@ -69,6 +70,18 @@ protected function prepareEnvironment() { } $archiver->extractList($files, $config_sync_directory); } + + // Add the module that is providing the database driver to the list of + // modules that can not be uninstalled in the core.extension configuration. + if (file_exists($config_sync_directory . '/core.extension.yml')) { + $core_extension = Yaml::decode(file_get_contents($config_sync_directory . '/core.extension.yml')); + $module = Database::getConnection()->getProvider(); + if ($module !== 'core') { + $core_extension['module'][$module] = 0; + $core_extension['module'] = module_config_sort($core_extension['module']); + file_put_contents($config_sync_directory . '/core.extension.yml', Yaml::encode($core_extension)); + } + } } /** -- GitLab