IdMapTableNoDummyTest.php

Same filename and directory in other branches
  1. 8.9.x core/modules/migrate_drupal/tests/src/Kernel/IdMapTableNoDummyTest.php
  2. 10 core/modules/migrate_drupal/tests/src/Kernel/IdMapTableNoDummyTest.php
  3. 11.x core/modules/migrate_drupal/tests/src/Kernel/IdMapTableNoDummyTest.php

Namespace

Drupal\Tests\migrate_drupal\Kernel

File

core/modules/migrate_drupal/tests/src/Kernel/IdMapTableNoDummyTest.php

View source
<?php

namespace Drupal\Tests\migrate_drupal\Kernel;

use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;

/**
 * Test that no dummy migrate_map tables are created.
 *
 * @group migrate_drupal
 */
class IdMapTableNoDummyTest extends MigrateDrupal6TestBase {
  
  /**
   * The migration plugin manager.
   *
   * @var \Drupal\migrate\Plugin\MigrationPluginManagerInterface
   */
  protected $pluginManager;
  
  /**
   * {@inheritdoc}
   */
  public function setUp() : void {
    parent::setUp();
    $this->pluginManager = $this->container
      ->get('plugin.manager.migration');
    $this->pluginManager
      ->createInstance('d6_user');
  }
  
  /**
   * Tests that dummy map tables do not exist.
   */
  public function testNoDummyTables() {
    $database = \Drupal::database();
    $tables = $database->schema()
      ->findTables('%migrate_map%');
    $dummy_tables = preg_grep("/.*migrate_map_([0-9a-fA-F]){13}/", $tables);
    $this->assertCount(0, $dummy_tables);
  }

}

Classes

Title Deprecated Summary
IdMapTableNoDummyTest Test that no dummy migrate_map tables are created.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.