You are here

MigrateDrupalTestBase.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/migrate_drupal/src/Tests/MigrateDrupalTestBase.php

File

core/modules/migrate_drupal/src/Tests/MigrateDrupalTestBase.php
View source
<?php

/**
 * @file
 * Contains \Drupal\migrate_drupal\Tests\MigrateDrupalTestBase.
 */
namespace Drupal\migrate_drupal\Tests;

use Drupal\Core\Database\Database;
use Drupal\migrate\Tests\MigrateTestBase;
use Drupal\Component\Plugin\Exception\PluginNotFoundException;

/**
 * Base class for Drupal migration tests.
 */
abstract class MigrateDrupalTestBase extends MigrateTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'system',
    'user',
    'field',
    'migrate_drupal',
    'options',
    'file',
  );

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $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);
  }

  /**
   * Turn all the migration templates for the specified drupal version into
   * real migration entities so we can test them.
   *
   * @param string $version
   *  Drupal version as provided in migration_tags - e.g., 'Drupal 6'.
   */
  protected function installMigrations($version) {
    $migration_templates = \Drupal::service('migrate.template_storage')
      ->findTemplatesByTag($version);
    $migrations = \Drupal::service('migrate.migration_builder')
      ->createMigrations($migration_templates);
    foreach ($migrations as $migration) {
      try {
        $migration
          ->save();
      } catch (PluginNotFoundException $e) {

        // Migrations requiring modules not enabled will throw an exception.
        // Ignoring this exception is equivalent to placing config in the
        // optional subdirectory - the migrations we require for the test will
        // be successfully saved.
      }
    }
  }

}

Classes

Namesort descending Description
MigrateDrupalTestBase Base class for Drupal migration tests.