You are here

abstract class MigrateDrupalTestBase in Drupal 10

Same name in this branch
  1. 10 core/modules/migrate_drupal/tests/src/Kernel/MigrateDrupalTestBase.php \Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase
  2. 10 core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateDrupalTestBase.php \Drupal\Tests\tracker\Kernel\Migrate\d7\MigrateDrupalTestBase
Same name and namespace in other branches
  1. 8 core/modules/migrate_drupal/tests/src/Kernel/MigrateDrupalTestBase.php \Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase
  2. 9 core/modules/migrate_drupal/tests/src/Kernel/MigrateDrupalTestBase.php \Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase

Base class for Drupal migration tests.

Hierarchy

Expanded class hierarchy of MigrateDrupalTestBase

16 files declare their use of MigrateDrupalTestBase
DestinationCategoryTest.php in core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/DestinationCategoryTest.php
FilterFormatPermissionTest.php in core/modules/filter/tests/src/Kernel/Migrate/d6/FilterFormatPermissionTest.php
MigrateBlockContentStubTest.php in core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentStubTest.php
MigrateCommentStubTest.php in core/modules/comment/tests/src/Kernel/Migrate/MigrateCommentStubTest.php
MigrateDrupal6TestBase.php in core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6TestBase.php

... See full list

File

core/modules/migrate_drupal/tests/src/Kernel/MigrateDrupalTestBase.php, line 11

Namespace

Drupal\Tests\migrate_drupal\Kernel
View source
abstract class MigrateDrupalTestBase extends MigrateTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'system',
    'user',
    'field',
    'migrate_drupal',
    'options',
    'file',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $module_handler = \Drupal::moduleHandler();
    if ($module_handler
      ->moduleExists('node')) {
      $this
        ->installEntitySchema('node');
    }
    if ($module_handler
      ->moduleExists('comment')) {
      $this
        ->installEntitySchema('comment');
    }
    if ($module_handler
      ->moduleExists('taxonomy')) {
      $this
        ->installEntitySchema('taxonomy_term');
    }
    if ($module_handler
      ->moduleExists('user')) {
      $this
        ->installEntitySchema('user');
    }
    $this
      ->installConfig([
      'migrate_drupal',
      'system',
    ]);
  }

  /**
   * Loads a database fixture into the source database connection.
   *
   * @param string $path
   *   Path to the dump file.
   */
  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);
  }

}

Members