Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 4 |
CRAP | |
0.00% |
0 / 34 |
TestRunnerKernel | |
0.00% |
0 / 1 |
|
0.00% |
0 / 4 |
42 | |
0.00% |
0 / 34 |
createFromRequest | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
__construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 10 |
|||
boot | |
0.00% |
0 / 1 |
12 | |
0.00% |
0 / 19 |
|||
discoverServiceProviders | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Test\TestRunnerKernel. | |
*/ | |
namespace Drupal\Core\Test; | |
use Drupal\Core\DrupalKernel; | |
use Drupal\Core\Extension\Extension; | |
use Drupal\Core\Site\Settings; | |
use Symfony\Component\HttpFoundation\Request; | |
/** | |
* Kernel for run-tests.sh. | |
*/ | |
class TestRunnerKernel extends DrupalKernel { | |
/** | |
* {@inheritdoc} | |
*/ | |
public static function createFromRequest(Request $request, $class_loader, $environment = 'test_runner', $allow_dumping = TRUE) { | |
return parent::createFromRequest($request, $class_loader, $environment); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function __construct($environment, $class_loader) { | |
parent::__construct($environment, $class_loader, FALSE); | |
// Prime the module list and corresponding Extension objects. | |
// @todo Remove System module. Needed because | |
// \Drupal\Core\Datetime\DateFormatter has a (needless) dependency on the | |
// 'date_format' entity, so calls to format_date()/format_interval() cause | |
// a plugin not found exception. | |
$this->moduleList = array( | |
'system' => 0, | |
'simpletest' => 0, | |
); | |
$this->moduleData = array( | |
'system' => new Extension($this->root, 'module', 'core/modules/system/system.info.yml', 'system.module'), | |
'simpletest' => new Extension($this->root, 'module', 'core/modules/simpletest/simpletest.info.yml', 'simpletest.module'), | |
); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function boot() { | |
// Ensure that required Settings exist. | |
if (!Settings::getAll()) { | |
new Settings(array( | |
'hash_salt' => 'run-tests', | |
'container_yamls' => [], | |
// If there is no settings.php, then there is no parent site. In turn, | |
// there is no public files directory; use a custom public files path. | |
'file_public_path' => 'sites/default/files', | |
)); | |
} | |
// Remove Drupal's error/exception handlers; they are designed for HTML | |
// and there is no storage nor a (watchdog) logger here. | |
restore_error_handler(); | |
restore_exception_handler(); | |
// In addition, ensure that PHP errors are not hidden away in logs. | |
ini_set('display_errors', TRUE); | |
parent::boot(); | |
$this->getContainer()->get('module_handler')->loadAll(); | |
simpletest_classloader_register(); | |
// Register stream wrappers. | |
$this->getContainer()->get('stream_wrapper_manager')->register(); | |
// Create the build/artifacts directory if necessary. | |
include_once DRUPAL_ROOT . '/core/includes/file.inc'; | |
if (!is_dir('public://simpletest')) { | |
mkdir('public://simpletest', 0777, TRUE); | |
} | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function discoverServiceProviders() { | |
parent::discoverServiceProviders(); | |
// The test runner does not require an installed Drupal site to exist. | |
// Therefore, its environment is identical to that of the early installer. | |
$this->serviceProviderClasses['app']['Test'] = 'Drupal\Core\Installer\InstallerServiceProvider'; | |
} | |
} |