MigrateFieldFormatterSettingsTest.php

Same filename in this branch
  1. 9 core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldFormatterSettingsTest.php
Same filename and directory in other branches
  1. 8.9.x core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldFormatterSettingsTest.php
  2. 8.9.x core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldFormatterSettingsTest.php
  3. 10 core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldFormatterSettingsTest.php
  4. 10 core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldFormatterSettingsTest.php
  5. 11.x core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldFormatterSettingsTest.php
  6. 11.x core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldFormatterSettingsTest.php

Namespace

Drupal\Tests\field\Kernel\Migrate\d6

File

core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldFormatterSettingsTest.php

View source
<?php

namespace Drupal\Tests\field\Kernel\Migrate\d6;

use Drupal\Core\Entity\Entity\EntityViewDisplay;
use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;

/**
 * Upgrade field formatter settings to entity.display.*.*.yml.
 *
 * @group migrate_drupal_6
 */
class MigrateFieldFormatterSettingsTest extends MigrateDrupal6TestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'comment',
        'menu_ui',
        'node',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->installConfig([
            'comment',
        ]);
        $this->executeMigration('d6_comment_type');
        $this->migrateFields();
    }
    
    /**
     * Asserts that a particular component is NOT included in a display.
     *
     * @param string $display_id
     *   The display ID.
     * @param string $component_id
     *   The component ID.
     *
     * @internal
     */
    protected function assertComponentNotExists(string $display_id, string $component_id) : void {
        $component = EntityViewDisplay::load($display_id)->getComponent($component_id);
        $this->assertNull($component);
    }
    
    /**
     * Tests that migrated entity display settings can be loaded using D8 API's.
     */
    public function testEntityDisplaySettings() {
        // Run tests.
        $field_name = "field_test";
        $expected = [
            'type' => 'text_trimmed',
            'label' => 'above',
            'settings' => [
                'trim_length' => 600,
            ],
            'third_party_settings' => [],
            'weight' => 1,
            'region' => 'content',
        ];
        // Can we load any entity display.
        $display = EntityViewDisplay::load('node.story.teaser');
        $this->assertSame($expected, $display->getComponent($field_name));
        // Test migrate worked with multiple bundles.
        $display = EntityViewDisplay::load('node.test_page.teaser');
        $expected['weight'] = 35;
        $this->assertSame($expected, $display->getComponent($field_name));
        // Test RSS because that has been converted from 4 to rss.
        $display = EntityViewDisplay::load('node.story.rss');
        $expected['weight'] = 1;
        $this->assertSame($expected, $display->getComponent($field_name));
        // Test the default format with text_default which comes from a static map.
        $expected['type'] = 'text_default';
        $expected['settings'] = [];
        $display = EntityViewDisplay::load('node.story.default');
        $this->assertSame($expected, $display->getComponent($field_name));
        // Check that we can migrate multiple fields.
        $content = $display->get('content');
        $this->assertTrue(isset($content['field_test']), 'Settings for field_test exist.');
        $this->assertTrue(isset($content['field_test_two']), "Settings for field_test_two exist.");
        // Check that we can migrate a field where exclude is not set.
        $this->assertTrue(isset($content['field_test_exclude_unset']), "Settings for field_test_exclude_unset exist.");
        // Test the number field formatter settings are correct.
        $expected['weight'] = 1;
        $expected['type'] = 'number_integer';
        $expected['settings'] = [
            'thousand_separator' => ',',
            'prefix_suffix' => TRUE,
        ];
        $component = $display->getComponent('field_test_two');
        $this->assertSame($expected, $component);
        $expected['weight'] = 2;
        $expected['type'] = 'number_decimal';
        $expected['settings'] = [
            'thousand_separator' => ',',
            'decimal_separator' => '.',
            'scale' => 2,
            'prefix_suffix' => TRUE,
        ];
        $component = $display->getComponent('field_test_three');
        $this->assertSame($expected, $component);
        // Test the email field formatter settings are correct.
        $expected['weight'] = 6;
        $expected['type'] = 'email_mailto';
        $expected['settings'] = [];
        $component = $display->getComponent('field_test_email');
        $this->assertSame($expected, $component);
        // Test the link field formatter settings.
        $expected['weight'] = 7;
        $expected['type'] = 'link';
        $expected['settings'] = [
            'trim_length' => 80,
            'url_only' => TRUE,
            'url_plain' => TRUE,
            'rel' => '0',
            'target' => '0',
        ];
        $component = $display->getComponent('field_test_link');
        $this->assertSame($expected, $component);
        $expected['settings']['url_only'] = FALSE;
        $expected['settings']['url_plain'] = FALSE;
        $display = EntityViewDisplay::load('node.story.teaser');
        $component = $display->getComponent('field_test_link');
        $this->assertSame($expected, $component);
        // Test the file field formatter settings.
        $expected['weight'] = 8;
        $expected['type'] = 'file_default';
        $expected['settings'] = [
            'use_description_as_link_text' => TRUE,
        ];
        $component = $display->getComponent('field_test_filefield');
        $this->assertSame($expected, $component);
        $display = EntityViewDisplay::load('node.story.default');
        $expected['type'] = 'file_url_plain';
        $expected['settings'] = [];
        $component = $display->getComponent('field_test_filefield');
        $this->assertSame($expected, $component);
        // Test the image field formatter settings.
        $expected['weight'] = 9;
        $expected['type'] = 'image';
        $expected['settings'] = [
            'image_link' => '',
            'image_style' => '',
            'image_loading' => [
                'attribute' => 'lazy',
            ],
        ];
        $component = $display->getComponent('field_test_imagefield');
        $this->assertSame($expected, $component);
        $display = EntityViewDisplay::load('node.story.teaser');
        $expected['settings']['image_link'] = 'file';
        $component = $display->getComponent('field_test_imagefield');
        $this->assertSame($expected, $component);
        // Test phone field.
        $expected['weight'] = 13;
        $expected['type'] = 'basic_string';
        $expected['settings'] = [];
        $component = $display->getComponent('field_test_phone');
        $this->assertSame($expected, $component);
        // Test date field.
        $expected['weight'] = 10;
        $expected['type'] = 'datetime_default';
        $expected['settings'] = [
            'timezone_override' => '',
            'format_type' => 'fallback',
        ];
        $component = $display->getComponent('field_test_date');
        $this->assertSame($expected, $component);
        $display = EntityViewDisplay::load('node.story.default');
        $expected['settings']['format_type'] = 'long';
        $component = $display->getComponent('field_test_date');
        $this->assertSame($expected, $component);
        // Test date stamp field.
        $expected['weight'] = 11;
        $expected['settings']['format_type'] = 'fallback';
        $component = $display->getComponent('field_test_datestamp');
        $this->assertSame($expected, $component);
        $display = EntityViewDisplay::load('node.story.teaser');
        $expected['settings'] = [
            'timezone_override' => '',
            'format_type' => 'medium',
        ];
        $component = $display->getComponent('field_test_datestamp');
        $this->assertSame($expected, $component);
        // Test datetime field.
        $expected['weight'] = 12;
        $expected['settings'] = [
            'timezone_override' => '',
            'format_type' => 'short',
        ];
        $component = $display->getComponent('field_test_datetime');
        $this->assertSame($expected, $component);
        $display = EntityViewDisplay::load('node.story.default');
        $expected['settings']['format_type'] = 'fallback';
        $component = $display->getComponent('field_test_datetime');
        $this->assertSame($expected, $component);
        // Test a date field with a random format which should be mapped
        // to datetime_default.
        $display = EntityViewDisplay::load('node.story.rss');
        $expected['settings']['format_type'] = 'fallback';
        $component = $display->getComponent('field_test_datetime');
        $this->assertSame($expected, $component);
        // Test that our Id map has the correct data.
        $this->assertSame([
            [
                'node',
                'story',
                'teaser',
                'field_test',
            ],
        ], $this->getMigration('d6_field_formatter_settings')
            ->getIdMap()
            ->lookupDestinationIds([
            'story',
            'teaser',
            'node',
            'field_test',
        ]));
        // Test hidden field.
        $this->assertComponentNotExists('node.test_planet.teaser', 'field_test_text_single_checkbox');
        // Test a node reference field, which should be migrated to an entity
        // reference field.
        $display = EntityViewDisplay::load('node.employee.default');
        $component = $display->getComponent('field_company');
        $this->assertIsArray($component);
        $this->assertSame('entity_reference_label', $component['type']);
        // The default node reference formatter shows the referenced node's title
        // as a link.
        $this->assertTrue($component['settings']['link']);
        $display = EntityViewDisplay::load('node.employee.teaser');
        $component = $display->getComponent('field_company');
        $this->assertIsArray($component);
        $this->assertSame('entity_reference_label', $component['type']);
        // The plain node reference formatter shows the referenced node's title,
        // unlinked.
        $this->assertFalse($component['settings']['link']);
        $component = $display->getComponent('field_commander');
        $this->assertIsArray($component);
        $this->assertSame('entity_reference_label', $component['type']);
        // The default user reference formatter links to the referenced user.
        $this->assertTrue($component['settings']['link']);
        $display = EntityViewDisplay::load('comment.comment_node_a_thirty_two_char.default');
        $component = $display->getComponent('comment_body');
        $this->assertIsArray($component);
        $this->assertSame('text_default', $component['type']);
    }

}

Classes

Title Deprecated Summary
MigrateFieldFormatterSettingsTest Upgrade field formatter settings to entity.display.*.*.yml.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.