// After writing settings.php, the installer removes write permissions
// from the site directory. To allow drupal_generate_test_ua() to write
// a file containing the private key for drupal_valid_test_ua(), the site
// directory has to be writable.
// TestBase::restoreEnvironment() will delete the entire site directory.
// Not using File API; a potential error must trigger a PHP warning.
chmod(DRUPAL_ROOT . '/' .
$this->siteDirectory, 0777
);
// During tests, cacheable responses should get the debugging cacheability
// headers by default.
$this->
setContainerParameter('http.response.debug_cacheability_headers', TRUE
);
} /**
* Initialize various configurations post-installation.
*
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
* The container.
*/
protected function initConfig(ContainerInterface
$container) { $config =
$container->
get('config.factory'
);