You are here

protected function DistributionProfileTest::setUp in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/src/Tests/Installer/DistributionProfileTest.php \Drupal\system\Tests\Installer\DistributionProfileTest::setUp()

Sets up a Drupal site for running functional and integration tests.

Installs Drupal with the installation profile specified in \Drupal\simpletest\WebTestBase::$profile into the prefixed database.

Afterwards, installs any additional modules specified in the static \Drupal\simpletest\WebTestBase::$modules property of each class in the class hierarchy.

After installation all caches are flushed and several configuration values are reset to the values of the parent site executing the test, since the default values may be incompatible with the environment in which tests are being executed.

Overrides InstallerTestBase::setUp

File

core/modules/system/src/Tests/Installer/DistributionProfileTest.php, line 27
Contains \Drupal\system\Tests\Installer\DistributionProfileTest.

Class

DistributionProfileTest
Tests distribution profile support.

Namespace

Drupal\system\Tests\Installer

Code

protected function setUp() {
  $this->info = array(
    'type' => 'profile',
    'core' => \Drupal::CORE_COMPATIBILITY,
    'name' => 'Distribution profile',
    'distribution' => array(
      'name' => 'My Distribution',
      'install' => array(
        'theme' => 'bartik',
      ),
    ),
  );

  // File API functions are not available yet.
  $path = $this->siteDirectory . '/profiles/mydistro';
  mkdir($path, 0777, TRUE);
  file_put_contents("{$path}/mydistro.info.yml", Yaml::encode($this->info));
  parent::setUp();
}