protected function ViewsKernelTestBase::setUpFixtures in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php \Drupal\Tests\views\Kernel\ViewsKernelTestBase::setUpFixtures()
- 9 core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php \Drupal\Tests\views\Kernel\ViewsKernelTestBase::setUpFixtures()
Sets up the configuration and schema of views and views_test_data modules.
Because the schema of views_test_data.module is dependent on the test using it, it cannot be enabled normally.
1 call to ViewsKernelTestBase::setUpFixtures()
- RelationshipJoinTestBase::setUpFixtures in core/
modules/ views/ tests/ src/ Kernel/ Plugin/ RelationshipJoinTestBase.php - Sets up the configuration and schema of views and views_test_data modules.
1 method overrides ViewsKernelTestBase::setUpFixtures()
- RelationshipJoinTestBase::setUpFixtures in core/
modules/ views/ tests/ src/ Kernel/ Plugin/ RelationshipJoinTestBase.php - Sets up the configuration and schema of views and views_test_data modules.
File
- core/
modules/ views/ tests/ src/ Kernel/ ViewsKernelTestBase.php, line 64
Class
- ViewsKernelTestBase
- Defines a base class for Views kernel testing.
Namespace
Drupal\Tests\views\KernelCode
protected function setUpFixtures() {
// First install the system module. Many Views have Page displays have menu
// links, and for those to work, the system menus must already be present.
$this
->installConfig([
'system',
]);
/** @var \Drupal\Core\State\StateInterface $state */
$state = $this->container
->get('state');
// Define the schema and views data variable before enabling the test module.
$state
->set('views_test_data_schema', $this
->schemaDefinition());
$state
->set('views_test_data_views_data', $this
->viewsData());
$this->container
->get('views.views_data')
->clear();
$this
->installConfig([
'views',
'views_test_config',
'views_test_data',
]);
foreach ($this
->schemaDefinition() as $table => $schema) {
$this
->installSchema('views_test_data', $table);
}
$this->container
->get('router.builder')
->rebuild();
// Load the test dataset.
$data_set = $this
->dataSet();
$query = Database::getConnection()
->insert('views_test_data')
->fields(array_keys($data_set[0]));
foreach ($data_set as $record) {
$query
->values($record);
}
$query
->execute();
}