View source
<?php
namespace Drupal\Tests\node\Kernel\Migrate\d6;
use Drupal\field\Entity\FieldConfig;
use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
use Drupal\node\Entity\NodeType;
class MigrateNodeTypeTest extends MigrateDrupal6TestBase {
protected static $modules = [
'menu_ui',
];
protected function setUp() : void {
parent::setUp();
$this
->installConfig([
'node',
]);
$this
->executeMigration('d6_node_type');
}
public function testNodeType() {
$id_map = $this
->getMigration('d6_node_type')
->getIdMap();
$node_type_page = NodeType::load('test_page');
$this
->assertSame('test_page', $node_type_page
->id(), 'Node type test_page loaded');
$this
->assertTrue($node_type_page
->displaySubmitted());
$this
->assertFalse($node_type_page
->shouldCreateNewRevision());
$this
->assertSame(DRUPAL_OPTIONAL, $node_type_page
->getPreviewMode());
$this
->assertSame($id_map
->lookupDestinationIds([
'test_page',
]), [
[
'test_page',
],
]);
$field = FieldConfig::loadByName('node', 'test_page', 'body');
$this
->assertSame('This is the body field label', $field
->getLabel(), 'Body field was found.');
$expected_available_menus = [
'navigation',
];
$this
->assertSame($expected_available_menus, $node_type_page
->getThirdPartySetting('menu_ui', 'available_menus'));
$expected_parent = 'navigation:';
$this
->assertSame($expected_parent, $node_type_page
->getThirdPartySetting('menu_ui', 'parent'));
$node_type_story = NodeType::load('test_story');
$this
->assertSame('test_story', $node_type_story
->id(), 'Node type test_story loaded');
$this
->assertTrue($node_type_story
->displaySubmitted());
$this
->assertFalse($node_type_story
->shouldCreateNewRevision());
$this
->assertSame(DRUPAL_OPTIONAL, $node_type_story
->getPreviewMode());
$this
->assertSame([
[
'test_story',
],
], $id_map
->lookupDestinationIds([
'test_story',
]));
$field = FieldConfig::loadByName('node', 'test_story', 'body');
$this
->assertNull($field, 'No body field found');
$expected_available_menus = [
'navigation',
];
$this
->assertSame($expected_available_menus, $node_type_story
->getThirdPartySetting('menu_ui', 'available_menus'));
$expected_parent = 'navigation:';
$this
->assertSame($expected_parent, $node_type_story
->getThirdPartySetting('menu_ui', 'parent'));
$node_type_event = NodeType::load('test_event');
$this
->assertSame('test_event', $node_type_event
->id(), 'Node type test_event loaded');
$this
->assertTrue($node_type_event
->displaySubmitted());
$this
->assertTrue($node_type_event
->shouldCreateNewRevision());
$this
->assertSame(DRUPAL_OPTIONAL, $node_type_event
->getPreviewMode());
$this
->assertSame([
[
'test_event',
],
], $id_map
->lookupDestinationIds([
'test_event',
]));
$field = FieldConfig::loadByName('node', 'test_event', 'body');
$this
->assertSame('Body', $field
->getLabel(), 'Body field was found.');
$expected_available_menus = [
'navigation',
];
$this
->assertSame($expected_available_menus, $node_type_event
->getThirdPartySetting('menu_ui', 'available_menus'));
$expected_parent = 'navigation:';
$this
->assertSame($expected_parent, $node_type_event
->getThirdPartySetting('menu_ui', 'parent'));
$node_type = NodeType::load('a_thirty_two_character_type_name');
$this
->assertSame('a_thirty_two_character_type_name', $node_type
->id());
}
}