View source
<?php
namespace Drupal\node\Tests\Migrate\d6;
use Drupal\field\Entity\FieldConfig;
use Drupal\migrate\Entity\Migration;
use Drupal\migrate_drupal\Tests\d6\MigrateDrupal6TestBase;
use Drupal\node\Entity\NodeType;
class MigrateNodeTypeTest extends MigrateDrupal6TestBase {
protected function setUp() {
parent::setUp();
$this
->installConfig([
'node',
]);
$this
->executeMigration('d6_node_type');
}
public function testNodeType() {
$id_map = Migration::load('d6_node_type')
->getIdMap();
$node_type_page = NodeType::load('test_page');
$this
->assertIdentical('test_page', $node_type_page
->id(), 'Node type test_page loaded');
$this
->assertIdentical(TRUE, $node_type_page
->displaySubmitted());
$this
->assertIdentical(FALSE, $node_type_page
->isNewRevision());
$this
->assertIdentical(DRUPAL_OPTIONAL, $node_type_page
->getPreviewMode());
$this
->assertIdentical($id_map
->lookupDestinationID(array(
'test_page',
)), array(
'test_page',
));
$field = FieldConfig::loadByName('node', 'test_page', 'body');
$this
->assertIdentical('This is the body field label', $field
->getLabel(), 'Body field was found.');
$node_type_story = NodeType::load('test_story');
$this
->assertIdentical('test_story', $node_type_story
->id(), 'Node type test_story loaded');
$this
->assertIdentical(TRUE, $node_type_story
->displaySubmitted());
$this
->assertIdentical(FALSE, $node_type_story
->isNewRevision());
$this
->assertIdentical(DRUPAL_OPTIONAL, $node_type_story
->getPreviewMode());
$this
->assertIdentical($id_map
->lookupDestinationID(array(
'test_story',
)), array(
'test_story',
));
$field = FieldConfig::loadByName('node', 'test_story', 'body');
$this
->assertIdentical(NULL, $field, 'No body field found');
$node_type_event = NodeType::load('test_event');
$this
->assertIdentical('test_event', $node_type_event
->id(), 'Node type test_event loaded');
$this
->assertIdentical(TRUE, $node_type_event
->displaySubmitted());
$this
->assertIdentical(TRUE, $node_type_event
->isNewRevision());
$this
->assertIdentical(DRUPAL_OPTIONAL, $node_type_event
->getPreviewMode());
$this
->assertIdentical($id_map
->lookupDestinationID(array(
'test_event',
)), array(
'test_event',
));
$field = FieldConfig::loadByName('node', 'test_event', 'body');
$this
->assertIdentical('Body', $field
->getLabel(), 'Body field was found.');
}
}