You are here

protected function MigrateDrupalTestBase::loadFixture in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/migrate_drupal/tests/src/Kernel/MigrateDrupalTestBase.php \Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase::loadFixture()
  2. 10 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.

2 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

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\Kernel

Code

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);
}