You are here

public function MigrateVocabularyEntityDisplayTest::testVocabularyEntityDisplay in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityDisplayTest.php \Drupal\Tests\taxonomy\Kernel\Migrate\d6\MigrateVocabularyEntityDisplayTest::testVocabularyEntityDisplay()
  2. 9 core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityDisplayTest.php \Drupal\Tests\taxonomy\Kernel\Migrate\d6\MigrateVocabularyEntityDisplayTest::testVocabularyEntityDisplay()

Tests the Drupal 6 vocabulary-node type association to Drupal 8 migration.

File

core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityDisplayTest.php, line 40

Class

MigrateVocabularyEntityDisplayTest
Vocabulary entity display migration.

Namespace

Drupal\Tests\taxonomy\Kernel\Migrate\d6

Code

public function testVocabularyEntityDisplay() {
  $this
    ->executeMigration('d6_vocabulary_entity_display');

  // Test that the field exists.
  $component = EntityViewDisplay::load('node.page.default')
    ->getComponent('field_tags');
  $this
    ->assertSame('entity_reference_label', $component['type']);
  $this
    ->assertSame(20, $component['weight']);

  // Test the Id map.
  $this
    ->assertSame([
    [
      'node',
      'article',
      'default',
      'field_tags',
    ],
  ], $this
    ->getMigration('d6_vocabulary_entity_display')
    ->getIdMap()
    ->lookupDestinationIds([
    4,
    'article',
  ]));

  // Tests that a vocabulary named like a D8 base field will be migrated and
  // prefixed with 'field_' to avoid conflicts.
  $field_type = EntityViewDisplay::load('node.sponsor.default')
    ->getComponent('field_type');
  $this
    ->assertIsArray($field_type);
}