You are here

public function IdMapTableNoDummyTest::testNoDummyTables in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/migrate_drupal/tests/src/Kernel/IdMapTableNoDummyTest.php \Drupal\Tests\migrate_drupal\Kernel\IdMapTableNoDummyTest::testNoDummyTables()

Tests that dummy map tables do not exist.

File

core/modules/migrate_drupal/tests/src/Kernel/IdMapTableNoDummyTest.php, line 33

Class

IdMapTableNoDummyTest
Test that no dummy migrate_map tables are created.

Namespace

Drupal\Tests\migrate_drupal\Kernel

Code

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