MigrateNodeDeriverTest.php

Same filename in this branch
  1. 8.9.x core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeDeriverTest.php
Same filename and directory in other branches
  1. 9 core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeDeriverTest.php
  2. 9 core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeDeriverTest.php
  3. 10 core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeDeriverTest.php
  4. 10 core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeDeriverTest.php
  5. 11.x core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeDeriverTest.php
  6. 11.x core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeDeriverTest.php

Namespace

Drupal\Tests\node\Kernel\Migrate\d6

File

core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeDeriverTest.php

View source
<?php

namespace Drupal\Tests\node\Kernel\Migrate\d6;

use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;

/**
 * Test D6NodeDeriver.
 *
 * @group migrate_drupal_6
 */
class MigrateNodeDeriverTest extends MigrateDrupal6TestBase {
    
    /**
     * The migration plugin manager.
     *
     * @var \Drupal\migrate\Plugin\MigrationPluginManagerInterface
     */
    protected $pluginManager;
    
    /**
     * {@inheritdoc}
     */
    public function setUp() {
        parent::setUp();
        $this->pluginManager = $this->container
            ->get('plugin.manager.migration');
    }
    
    /**
     * Test node translation migrations with translation disabled.
     */
    public function testNoTranslations() {
        // Without content_translation, there should be no translation migrations.
        $migrations = $this->pluginManager
            ->createInstances('d6_node_translation');
        $this->assertSame([], $migrations, "No node translation migrations without content_translation");
    }
    
    /**
     * Test node translation migrations with translation enabled.
     */
    public function testTranslations() {
        // With content_translation, there should be translation migrations for
        // each content type.
        $this->enableModules([
            'language',
            'content_translation',
        ]);
        $this->assertTrue($this->container
            ->get('plugin.manager.migration')
            ->hasDefinition('d6_node_translation:story'), "Node translation migrations exist after content_translation installed");
    }

}

Classes

Title Deprecated Summary
MigrateNodeDeriverTest Test D6NodeDeriver.

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