protected function MigrateDrupalTestBase::loadFixture in Drupal 10
Same name and namespace in other branches
- 8 core/modules/migrate_drupal/tests/src/Kernel/MigrateDrupalTestBase.php \Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase::loadFixture()
- 9 core/modules/migrate_drupal/tests/src/Kernel/MigrateDrupalTestBase.php \Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase::loadFixture()
Loads a database fixture into the source database connection.
Parameters
string $path: Path to the dump file.
4 calls to MigrateDrupalTestBase::loadFixture()
- MigrateDrupal6TestBase::setUp in core/
modules/ migrate_drupal/ tests/ src/ Kernel/ d6/ MigrateDrupal6TestBase.php - MigrateDrupal7TestBase::setUp in core/
modules/ migrate_drupal/ tests/ src/ Kernel/ d7/ MigrateDrupal7TestBase.php - MigrateDrupalTestBase::setUp in core/
modules/ tracker/ tests/ src/ Kernel/ Migrate/ d7/ MigrateDrupalTestBase.php - MigrateRdfMappingTest::setUp in core/
modules/ rdf/ tests/ src/ Kernel/ Migrate/ d7/ MigrateRdfMappingTest.php
File
- core/
modules/ migrate_drupal/ tests/ src/ Kernel/ MigrateDrupalTestBase.php, line 56
Class
- MigrateDrupalTestBase
- Base class for Drupal migration tests.
Namespace
Drupal\Tests\migrate_drupal\KernelCode
protected function loadFixture($path) {
$default_db = Database::getConnection()
->getKey();
Database::setActiveConnection($this->sourceDatabase
->getKey());
if (substr($path, -3) == '.gz') {
$path = 'compress.zlib://' . $path;
}
require $path;
Database::setActiveConnection($default_db);
}