Mercurial > hg > isophonics-drupal-site
view core/modules/migrate/tests/src/Kernel/MigrateInterruptionTest.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | af1871eacc83 |
children |
line wrap: on
line source
<?php namespace Drupal\Tests\migrate\Kernel; use Drupal\migrate\Event\MigratePostRowSaveEvent; use Drupal\migrate\Plugin\MigrationInterface; use Drupal\migrate\Event\MigrateEvents; use Drupal\migrate\MigrateExecutable; use Drupal\KernelTests\KernelTestBase; /** * Tests interruptions triggered during migrations. * * @group migrate */ class MigrateInterruptionTest extends KernelTestBase { /** * Modules to enable. * * @var array */ public static $modules = ['migrate', 'migrate_events_test']; /** * {@inheritdoc} */ protected function setUp() { parent::setUp(); \Drupal::service('event_dispatcher')->addListener(MigrateEvents::POST_ROW_SAVE, [$this, 'postRowSaveEventRecorder']); } /** * Tests migration interruptions. */ public function testMigrateEvents() { // Run a simple little migration, which should trigger one of each event // other than map_delete. $definition = [ 'migration_tags' => ['Interruption test'], 'source' => [ 'plugin' => 'embedded_data', 'data_rows' => [ ['data' => 'dummy value'], ['data' => 'dummy value2'], ], 'ids' => [ 'data' => ['type' => 'string'], ], ], 'process' => ['value' => 'data'], 'destination' => ['plugin' => 'dummy'], ]; $migration = \Drupal::service('plugin.manager.migration')->createStubMigration($definition); $executable = new MigrateExecutable($migration); // When the import runs, the first row imported will trigger an // interruption. $result = $executable->import(); $this->assertEqual($result, MigrationInterface::RESULT_INCOMPLETE); // The status should have been reset to IDLE. $this->assertEqual($migration->getStatus(), MigrationInterface::STATUS_IDLE); } /** * Reacts to post-row-save event. * * @param \Drupal\migrate\Event\MigratePostRowSaveEvent $event * The migration event. * @param string $name * The event name. */ public function postRowSaveEventRecorder(MigratePostRowSaveEvent $event, $name) { $event->getMigration()->interruptMigration(MigrationInterface::RESULT_INCOMPLETE); } }