MigrateVocabularyEntityFormDisplayTest.php in Drupal 10
File
core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityFormDisplayTest.php
View source
<?php
namespace Drupal\Tests\taxonomy\Kernel\Migrate\d6;
use Drupal\Core\Entity\Entity\EntityFormDisplay;
use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
class MigrateVocabularyEntityFormDisplayTest extends MigrateDrupal6TestBase {
protected static $modules = [
'taxonomy',
'menu_ui',
];
protected function setUp() : void {
parent::setUp();
$this
->migrateContentTypes();
$this
->installEntitySchema('taxonomy_term');
$this
->executeMigrations([
'd6_taxonomy_vocabulary',
'd6_vocabulary_field',
'd6_vocabulary_field_instance',
'd6_vocabulary_entity_display',
]);
}
public function testVocabularyEntityFormDisplay() {
$this
->executeMigration('d6_vocabulary_entity_form_display');
$component = EntityFormDisplay::load('node.page.default')
->getComponent('field_tags');
$this
->assertSame('options_select', $component['type']);
$this
->assertSame(20, $component['weight']);
$this
->assertSame([
[
'node',
'article',
'default',
'field_tags',
],
], $this
->getMigration('d6_vocabulary_entity_form_display')
->getIdMap()
->lookupDestinationIds([
4,
'article',
]));
$entity_form_display = EntityFormDisplay::load('node.story.default');
$this
->assertSame($entity_form_display
->getComponent('field_vocabulary_1_i_0_')['type'], 'options_select');
$this
->assertSame($entity_form_display
->getComponent('field_vocabulary_2_i_1_')['type'], 'entity_reference_autocomplete_tags');
$field_type = EntityFormDisplay::load('node.sponsor.default')
->getComponent('field_type');
$this
->assertIsArray($field_type);
}
public function testSkipNonExistentNodeType() {
$this
->mockFailure('d6_node_type', [
'type' => 'story',
]);
$migration = $this
->getMigration('d6_vocabulary_entity_form_display');
$this
->executeMigration($migration);
$this
->assertNull($migration
->getIdMap()
->lookupDestinationIds([
'type' => 'story',
])[0][0]);
}
}