diff --git a/core/modules/migrate/src/Plugin/migrate/destination/EntityContentComplete.php b/core/modules/migrate/src/Plugin/migrate/destination/EntityContentComplete.php index 88e44bab65fa324735dc1dba829c1b3e17772e9f..e11f257a34eb9b81146ae6f1ca9e0a8025e3f3b2 100644 --- a/core/modules/migrate/src/Plugin/migrate/destination/EntityContentComplete.php +++ b/core/modules/migrate/src/Plugin/migrate/destination/EntityContentComplete.php @@ -4,7 +4,9 @@ use Drupal\Core\Entity\ContentEntityInterface; use Drupal\Core\Entity\EntityChangedInterface; +use Drupal\Core\Entity\EntityInterface; use Drupal\migrate\EntityFieldDefinitionTrait; +use Drupal\migrate\Plugin\MigrateIdMapInterface; use Drupal\migrate\Row; /** @@ -104,6 +106,18 @@ protected function getEntity(Row $row, array $old_destination_id_values) { return $entity; } + /** + * {@inheritdoc} + */ + protected function updateEntity(EntityInterface $entity, Row $row) { + $entity = parent::updateEntity($entity, $row); + // Always set the rollback action to delete. This is because the parent + // updateEntity will set the rollback action to preserve for the original + // language row, which is needed for the classic node migrations. + $this->setRollbackAction($row->getIdMap(), MigrateIdMapInterface::ROLLBACK_DELETE); + return $entity; + } + /** * {@inheritdoc} */ @@ -115,4 +129,14 @@ protected function save(ContentEntityInterface $entity, array $old_destination_i ]; } + /** + * {@inheritdoc} + */ + public function rollback(array $destination_identifier) { + // We want to delete the entity and all the translations so use + // Entity:rollback because EntityContentBase::rollback will not remove the + // default translation. + Entity::rollback($destination_identifier); + } + } diff --git a/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeCompleteTest.php b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeCompleteTest.php index 5798180ac3f2a4af87763e308981942802e81a24..153fd185da5b057a22682686689efe9350dd1453 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeCompleteTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeCompleteTest.php @@ -2,6 +2,7 @@ namespace Drupal\Tests\node\Kernel\Migrate\d7; +use Drupal\migrate\MigrateExecutable; use Drupal\migrate_drupal\NodeMigrateType; use Drupal\node\NodeInterface; use Drupal\Tests\file\Kernel\Migrate\d7\FileMigrationSetupTrait; @@ -126,6 +127,34 @@ public function testNodeCompleteMigration() { } } + /** + * Tests rollback of the complete node migration. + */ + public function testRollbackNodeComplete() { + $db = \Drupal::database(); + $node_types = [ + 'article', + 'blog', + 'book', + 'forum', + 'page', + 'test_content_type', + ]; + foreach ($node_types as $node_type) { + // Execute the rollback. + $this->migration = $this->getMigration("d7_node_complete:$node_type"); + (new MigrateExecutable($this->migration, $this))->rollback(); + + // Assert there are no nodes of node_type. + $count = $db->select('node_field_data') + ->condition('type', $node_type) + ->countQuery() + ->execute() + ->fetchField(); + $this->assertSame($count, '0', "There are $count nodes of type $node_type"); + } + } + /** * Asserts various aspects of a node revision. *