You are here

MigrateVocabularyEntityFormDisplayTest.php in Zircon Profile 8

File

core/modules/taxonomy/src/Tests/Migrate/d6/MigrateVocabularyEntityFormDisplayTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\taxonomy\Tests\Migrate\d6\MigrateVocabularyEntityFormDisplayTest.
 */
namespace Drupal\taxonomy\Tests\Migrate\d6;

use Drupal\Core\Entity\Entity\EntityFormDisplay;
use Drupal\migrate\Entity\Migration;
use Drupal\migrate_drupal\Tests\d6\MigrateDrupal6TestBase;

/**
 * Vocabulary entity form display migration.
 *
 * @group migrate_drupal_6
 */
class MigrateVocabularyEntityFormDisplayTest extends MigrateDrupal6TestBase {

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'taxonomy',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this
      ->migrateTaxonomy();
  }

  /**
   * Tests the Drupal 6 vocabulary-node type association to Drupal 8 migration.
   */
  public function testVocabularyEntityFormDisplay() {

    // Test that the field exists.
    $component = EntityFormDisplay::load('node.page.default')
      ->getComponent('tags');
    $this
      ->assertIdentical('options_select', $component['type']);
    $this
      ->assertIdentical(20, $component['weight']);

    // Test the Id map.
    $this
      ->assertIdentical(array(
      'node',
      'article',
      'default',
      'tags',
    ), Migration::load('d6_vocabulary_entity_form_display')
      ->getIdMap()
      ->lookupDestinationID(array(
      4,
      'article',
    )));
  }

}

Classes

Namesort descending Description
MigrateVocabularyEntityFormDisplayTest Vocabulary entity form display migration.