MigrateVocabularyEntityDisplayTest.php in Zircon Profile 8.0
File
core/modules/taxonomy/src/Tests/Migrate/d6/MigrateVocabularyEntityDisplayTest.php
View source
<?php
namespace Drupal\taxonomy\Tests\Migrate\d6;
use Drupal\Core\Entity\Entity\EntityViewDisplay;
use Drupal\migrate\Entity\Migration;
use Drupal\migrate_drupal\Tests\d6\MigrateDrupal6TestBase;
class MigrateVocabularyEntityDisplayTest extends MigrateDrupal6TestBase {
public static $modules = [
'field',
'taxonomy',
];
protected function setUp() {
parent::setUp();
$this
->migrateTaxonomy();
}
public function testVocabularyEntityDisplay() {
$component = EntityViewDisplay::load('node.page.default')
->getComponent('tags');
$this
->assertIdentical('entity_reference_label', $component['type']);
$this
->assertIdentical(20, $component['weight']);
$this
->assertIdentical(array(
'node',
'article',
'default',
'tags',
), Migration::load('d6_vocabulary_entity_display')
->getIdMap()
->lookupDestinationID(array(
4,
'article',
)));
}
}