MigrateExecutableTest.php

Same filename in this branch
  1. 9 core/modules/migrate/tests/src/Unit/MigrateExecutableTest.php
Same filename and directory in other branches
  1. 8.9.x core/modules/migrate/tests/src/Unit/MigrateExecutableTest.php
  2. 8.9.x core/modules/migrate/tests/src/Kernel/MigrateExecutableTest.php
  3. 10 core/modules/migrate/tests/src/Unit/MigrateExecutableTest.php
  4. 10 core/modules/migrate/tests/src/Kernel/MigrateExecutableTest.php
  5. 11.x core/modules/migrate/tests/src/Unit/MigrateExecutableTest.php
  6. 11.x core/modules/migrate/tests/src/Kernel/MigrateExecutableTest.php

Namespace

Drupal\Tests\migrate\Kernel

File

core/modules/migrate/tests/src/Kernel/MigrateExecutableTest.php

View source
<?php

namespace Drupal\Tests\migrate\Kernel;

use Drupal\migrate\Plugin\MigrationInterface;

/**
 * Tests the MigrateExecutable class.
 *
 * @group migrate
 */
class MigrateExecutableTest extends MigrateTestBase {
    protected static $modules = [
        'entity_test',
        'user',
    ];
    
    /**
     * {@inheritdoc}
     */
    public function setUp() : void {
        parent::setUp();
        $this->installEntitySchema('user');
        $this->installEntitySchema('entity_test');
    }
    
    /**
     * Tests the MigrateExecutable class.
     */
    public function testMigrateExecutable() {
        $data_rows = [
            [
                'key' => '1',
                'field1' => 'f1value1',
                'field2' => 'f2value1',
            ],
            [
                'key' => '2',
                'field1' => 'f1value2',
                'field2' => 'f2value2',
            ],
        ];
        $ids = [
            'key' => [
                'type' => 'integer',
            ],
        ];
        $definition = [
            'migration_tags' => [
                'Embedded data test',
            ],
            'source' => [
                'plugin' => 'embedded_data',
                'data_rows' => $data_rows,
                'ids' => $ids,
            ],
            'process' => [],
            'destination' => [
                'plugin' => 'entity:entity_test',
            ],
        ];
        $migration = \Drupal::service('plugin.manager.migration')->createStubMigration($definition);
        $executable = new TestMigrateExecutable($migration);
        $this->assertEquals(MigrationInterface::RESULT_COMPLETED, $executable->import());
        // Test the exception message when a process plugin throws a
        // MigrateSkipRowException. Change the definition to have one data row and a
        // process that will throw a MigrateSkipRowException on every row.
        $definition['source']['data_rows'] = [
            [
                'key' => '1',
                'field1' => 'f1value1',
            ],
        ];
        $definition['process'] = [
            'foo' => [
                'plugin' => 'skip_row_if_not_set',
                'index' => 'foo',
                'source' => 'field1',
                'message' => 'test message',
            ],
        ];
        $migration = \Drupal::service('plugin.manager.migration')->createStubMigration($definition);
        $executable = new TestMigrateExecutable($migration);
        $executable->import();
        $messages = iterator_to_array($migration->getIdMap()
            ->getMessages());
        $this->assertCount(1, $messages);
        $expected = $migration->getPluginId() . ':foo: test message';
        $this->assertEquals($expected, $messages[0]->message);
    }

}

Classes

Title Deprecated Summary
MigrateExecutableTest Tests the MigrateExecutable class.

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