function DrupalFlushAllCachesInInstallerTest::prepareEnvironment

Same name and namespace in other branches
  1. 9 core/tests/Drupal/FunctionalTests/Installer/DrupalFlushAllCachesInInstallerTest.php \Drupal\FunctionalTests\Installer\DrupalFlushAllCachesInInstallerTest::prepareEnvironment()
  2. 10 core/tests/Drupal/FunctionalTests/Installer/DrupalFlushAllCachesInInstallerTest.php \Drupal\FunctionalTests\Installer\DrupalFlushAllCachesInInstallerTest::prepareEnvironment()

Overrides FunctionalTestSetupTrait::prepareEnvironment

File

core/tests/Drupal/FunctionalTests/Installer/DrupalFlushAllCachesInInstallerTest.php, line 30

Class

DrupalFlushAllCachesInInstallerTest
Tests <a href="/api/drupal/core%21includes%21common.inc/function/drupal_flush_all_caches/11.x" title="Rebuilds the container, flushes all persistent caches, resets all variables, and rebuilds all data structures." class="local">drupal_flush_all_caches</a>() during an install.

Namespace

Drupal\FunctionalTests\Installer

Code

protected function prepareEnvironment() {
    parent::prepareEnvironment();
    $info = [
        'type' => 'profile',
        'core_version_requirement' => '*',
        'name' => 'Cache flush test',
        'install' => [
            'language',
        ],
    ];
    // File API functions are not available yet.
    $path = $this->siteDirectory . '/profiles/cache_flush_test';
    mkdir($path, 0777, TRUE);
    file_put_contents("{$path}/cache_flush_test.info.yml", Yaml::encode($info));
    $php_code = <<<EOF
<?php
function cache_flush_test_install() {
  // Note it is bad practice to call this method during hook_install() as it
  // results in an additional expensive container rebuild.
  drupal_flush_all_caches();
  // Ensure services are available after calling drupal_flush_all_caches().
  \\Drupal::state()->set('cache_flush_test', \\Drupal::hasService('language_negotiator'));
}
EOF;
    file_put_contents("{$path}/cache_flush_test.install", $php_code);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.