MigrateNodeDeriverTest.php
Same filename in this branch
Same filename in other branches
- 9 core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeDeriverTest.php
- 9 core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeDeriverTest.php
- 8.9.x core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeDeriverTest.php
- 8.9.x core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeDeriverTest.php
- 10 core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeDeriverTest.php
- 10 core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeDeriverTest.php
Namespace
Drupal\Tests\node\Kernel\Migrate\d6File
-
core/
modules/ node/ tests/ src/ Kernel/ Migrate/ d6/ MigrateNodeDeriverTest.php
View source
<?php
declare (strict_types=1);
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}
*/
protected function setUp() : void {
parent::setUp();
$this->pluginManager = $this->container
->get('plugin.manager.migration');
}
/**
* Tests node translation migrations with translation disabled.
*/
public function testNoTranslations() : void {
// 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");
}
/**
* Tests node translation migrations with translation enabled.
*/
public function testTranslations() : void {
// 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.