MigrateUserPictureEntityFormDisplayTest.php

Same filename and directory in other branches
  1. 9 core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserPictureEntityFormDisplayTest.php
  2. 10 core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserPictureEntityFormDisplayTest.php
  3. 11.x core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserPictureEntityFormDisplayTest.php

Namespace

Drupal\Tests\user\Kernel\Migrate\d7

File

core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserPictureEntityFormDisplayTest.php

View source
<?php

namespace Drupal\Tests\user\Kernel\Migrate\d7;

use Drupal\Core\Entity\Entity\EntityFormDisplay;
use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;

/**
 * Tests migration of the user_picture field's entity form display settings.
 *
 * @group user
 */
class MigrateUserPictureEntityFormDisplayTest extends MigrateDrupal7TestBase {
    public static $modules = [
        'image',
        'file',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() {
        parent::setUp();
        $this->executeMigrations([
            'user_picture_field',
            'user_picture_field_instance',
            'user_picture_entity_form_display',
        ]);
    }
    
    /**
     * Tests the field's entity form display settings.
     */
    public function testEntityFormDisplaySettings() {
        $component = EntityFormDisplay::load('user.user.default')->getComponent('user_picture');
        $this->assertIdentical('image_image', $component['type']);
        $this->assertIdentical('throbber', $component['settings']['progress_indicator']);
        $this->assertIdentical('thumbnail', $component['settings']['preview_image_style']);
    }

}

Classes

Title Deprecated Summary
MigrateUserPictureEntityFormDisplayTest Tests migration of the user_picture field's entity form display settings.

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