You are here

protected function InstallerExistingSettingsMismatchProfileTest::prepareEnvironment in Drupal 8

Configures a preexisting settings.php file without an install_profile setting before invoking the interactive installer.

Overrides FunctionalTestSetupTrait::prepareEnvironment

File

core/tests/Drupal/FunctionalTests/Installer/InstallerExistingSettingsMismatchProfileTest.php, line 29

Class

InstallerExistingSettingsMismatchProfileTest
Tests install with existing settings.php and a mismatching install profile.

Namespace

Drupal\FunctionalTests\Installer

Code

protected function prepareEnvironment() {
  parent::prepareEnvironment();

  // Pre-configure hash salt.
  // Any string is valid, so simply use the class name of this test.
  $this->settings['settings']['hash_salt'] = (object) [
    'value' => __CLASS__,
    'required' => TRUE,
  ];

  // Pre-configure database credentials.
  $connection_info = Database::getConnectionInfo();
  unset($connection_info['default']['pdo']);
  unset($connection_info['default']['init_commands']);
  $this->settings['databases']['default'] = (object) [
    'value' => $connection_info,
    'required' => TRUE,
  ];

  // During interactive install we'll change this to a different profile and
  // this test will ensure that the new value is written to settings.php.
  $this->settings['settings']['install_profile'] = (object) [
    'value' => 'minimal',
    'required' => TRUE,
  ];

  // Pre-configure config directories.
  $this->settings['settings']['config_sync_directory'] = (object) [
    'value' => DrupalKernel::findSitePath(Request::createFromGlobals()) . '/files/config_sync',
    'required' => TRUE,
  ];
  mkdir($this->settings['settings']['config_sync_directory']->value, 0777, TRUE);
}