MigrateBlockContentEntityFormDisplayTest.php
Same filename in other branches
Namespace
Drupal\Tests\block_content\Kernel\MigrateFile
-
core/
modules/ block_content/ tests/ src/ Kernel/ Migrate/ MigrateBlockContentEntityFormDisplayTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\block_content\Kernel\Migrate;
use Drupal\Core\Entity\Entity\EntityFormDisplay;
use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
/**
* Tests migration of block content body field form display configuration.
*
* @group block_content
*/
class MigrateBlockContentEntityFormDisplayTest extends MigrateDrupal7TestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'block',
'block_content',
'filter',
'text',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->installEntitySchema('block_content');
$this->installConfig(static::$modules);
$this->executeMigrations([
'block_content_type',
'block_content_body_field',
'block_content_entity_form_display',
]);
}
/**
* Asserts a display entity.
*
* @param string $id
* The entity ID.
* @param string $component_id
* The ID of the form component.
*
* @internal
*/
protected function assertDisplay(string $id, string $component_id) : void {
$component = EntityFormDisplay::load($id)->getComponent($component_id);
$this->assertIsArray($component);
$this->assertSame('text_textarea_with_summary', $component['type']);
}
/**
* Tests the migrated display configuration.
*/
public function testMigration() : void {
$this->assertDisplay('block_content.basic.default', 'body');
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
MigrateBlockContentEntityFormDisplayTest | Tests migration of block content body field form display configuration. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.