function MigrateSkipRowTest::testPrepareRowSkip

Same name and namespace in other branches
  1. 8.9.x core/modules/migrate/tests/src/Kernel/MigrateSkipRowTest.php \Drupal\Tests\migrate\Kernel\MigrateSkipRowTest::testPrepareRowSkip()
  2. 10 core/modules/migrate/tests/src/Kernel/MigrateSkipRowTest.php \Drupal\Tests\migrate\Kernel\MigrateSkipRowTest::testPrepareRowSkip()
  3. 11.x core/modules/migrate/tests/src/Kernel/MigrateSkipRowTest.php \Drupal\Tests\migrate\Kernel\MigrateSkipRowTest::testPrepareRowSkip()

Tests migration interruptions.

File

core/modules/migrate/tests/src/Kernel/MigrateSkipRowTest.php, line 27

Class

MigrateSkipRowTest
Tests row skips triggered during <a href="/api/drupal/core%21modules%21migrate%21migrate.api.php/function/hook_migrate_prepare_row/9" title="Allows adding data to a row before processing it." class="local">hook_migrate_prepare_row</a>().

Namespace

Drupal\Tests\migrate\Kernel

Code

public function testPrepareRowSkip() {
    // Run a simple little migration with two data rows which should be skipped
    // in different ways.
    $definition = [
        'migration_tags' => [
            'prepare_row test',
        ],
        'source' => [
            'plugin' => 'embedded_data',
            'data_rows' => [
                [
                    'id' => '1',
                    'data' => 'skip_and_record',
                ],
                [
                    'id' => '2',
                    'data' => 'skip_and_do_not_record',
                ],
            ],
            'ids' => [
                'id' => [
                    'type' => 'string',
                ],
            ],
        ],
        'process' => [
            'value' => 'data',
        ],
        'destination' => [
            'plugin' => 'config',
            'config_name' => 'migrate_test.settings',
        ],
        'load' => [
            'plugin' => 'null',
        ],
    ];
    $migration = \Drupal::service('plugin.manager.migration')->createStubMigration($definition);
    $executable = new MigrateExecutable($migration);
    $result = $executable->import();
    $this->assertEquals(MigrationInterface::RESULT_COMPLETED, $result);
    
    /** @var \Drupal\migrate\Plugin\MigrateIdMapInterface $id_map_plugin */
    $id_map_plugin = $migration->getIdMap();
    // The first row is recorded in the map as ignored.
    $map_row = $id_map_plugin->getRowBySource([
        'id' => 1,
    ]);
    $this->assertEquals(MigrateIdMapInterface::STATUS_IGNORED, $map_row['source_row_status']);
    // Check that no message has been logged for the first exception.
    $messages = $id_map_plugin->getMessages([
        'id' => 1,
    ])
        ->fetchAll();
    $this->assertEmpty($messages);
    // The second row is not recorded in the map.
    $map_row = $id_map_plugin->getRowBySource([
        'id' => 2,
    ]);
    $this->assertFalse($map_row);
    // Check that the correct message has been logged for the second exception.
    $messages = $id_map_plugin->getMessages([
        'id' => 2,
    ])
        ->fetchAll();
    $this->assertCount(1, $messages);
    $message = reset($messages);
    $this->assertEquals('skip_and_do_not_record message', $message->message);
    $this->assertEquals(MigrationInterface::MESSAGE_INFORMATIONAL, $message->level);
    // Insert a custom processor in the process flow.
    $definition['process']['value'] = [
        'source' => 'data',
        'plugin' => 'test_skip_row_process',
    ];
    // Change data to avoid triggering again hook_migrate_prepare_row().
    $definition['source']['data_rows'] = [
        [
            'id' => '1',
            'data' => 'skip_and_record (use plugin)',
        ],
        [
            'id' => '2',
            'data' => 'skip_and_do_not_record (use plugin)',
        ],
    ];
    $migration = \Drupal::service('plugin.manager.migration')->createStubMigration($definition);
    $executable = new MigrateExecutable($migration);
    $result = $executable->import();
    $this->assertEquals(MigrationInterface::RESULT_COMPLETED, $result);
    $id_map_plugin = $migration->getIdMap();
    // The first row is recorded in the map as ignored.
    $map_row = $id_map_plugin->getRowBySource([
        'id' => 1,
    ]);
    $this->assertEquals(MigrateIdMapInterface::STATUS_IGNORED, $map_row['source_row_status']);
    // The second row is not recorded in the map.
    $map_row = $id_map_plugin->getRowBySource([
        'id' => 2,
    ]);
    $this->assertFalse($map_row);
}

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