function MigrateBundleTest::testDestinationBundle

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

Tests setting the bundle in the destination.

File

core/modules/migrate/tests/src/Kernel/MigrateBundleTest.php, line 41

Class

MigrateBundleTest
Tests setting of bundles on content entity migrations.

Namespace

Drupal\Tests\migrate\Kernel

Code

public function testDestinationBundle() : void {
    $term_data_rows = [
        [
            'id' => 1,
            'name' => 'Category 1',
        ],
    ];
    $ids = [
        'id' => [
            'type' => 'integer',
        ],
    ];
    $definition = [
        'id' => 'terms',
        'migration_tags' => [
            'Bundle test',
        ],
        'source' => [
            'plugin' => 'embedded_data',
            'data_rows' => $term_data_rows,
            'ids' => $ids,
        ],
        'process' => [
            'tid' => 'id',
            'name' => 'name',
        ],
        'destination' => [
            'plugin' => 'entity:taxonomy_term',
            'default_bundle' => 'categories',
        ],
        'migration_dependencies' => [],
    ];
    $term_migration = \Drupal::service('plugin.manager.migration')->createStubMigration($definition);
    // Import and validate the term entity was created with the correct bundle.
    $term_executable = new MigrateExecutable($term_migration, $this);
    $term_executable->import();
    
    /** @var \Drupal\taxonomy\Entity\Term $term */
    $term = Term::load(1);
    $this->assertEquals('categories', $term->bundle());
}

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