You are here

public static function MigrateFieldInstanceLabelDescriptionTest::migrateDumpAlter in Drupal 8

Same name in this branch
  1. 8 core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldInstanceLabelDescriptionTest.php \Drupal\Tests\field\Kernel\Migrate\d6\MigrateFieldInstanceLabelDescriptionTest::migrateDumpAlter()
  2. 8 core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceLabelDescriptionTest.php \Drupal\Tests\field\Kernel\Migrate\d7\MigrateFieldInstanceLabelDescriptionTest::migrateDumpAlter()
Same name and namespace in other branches
  1. 9 core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldInstanceLabelDescriptionTest.php \Drupal\Tests\field\Kernel\Migrate\d6\MigrateFieldInstanceLabelDescriptionTest::migrateDumpAlter()
  2. 10 core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldInstanceLabelDescriptionTest.php \Drupal\Tests\field\Kernel\Migrate\d6\MigrateFieldInstanceLabelDescriptionTest::migrateDumpAlter()

Allows tests to alter dumps after they have loaded.

Parameters

\Drupal\KernelTests\KernelTestBase $test: The test that is being run.

Overrides MigrateDumpAlterInterface::migrateDumpAlter

File

core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldInstanceLabelDescriptionTest.php, line 48

Class

MigrateFieldInstanceLabelDescriptionTest
Tests migration of field label and description translations.

Namespace

Drupal\Tests\field\Kernel\Migrate\d6

Code

public static function migrateDumpAlter(KernelTestBase $test) {
  $db = Database::getConnection('default', 'migrate');

  // Alter the database to test the migration is successful when a translated
  // field is deleted but the translation data for that field remains in both
  // the i18n_strings and locales_target tables.
  $db
    ->delete('content_node_field_instance')
    ->condition('field_name', 'field_test')
    ->condition('type_name', 'story')
    ->execute();
}