MigrateUserPictureEntityFormDisplayTest.php
Same filename in other branches
Namespace
Drupal\Tests\user\Kernel\Migrate\d7File
-
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 {
protected static $modules = [
'image',
'file',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
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->assertSame('image_image', $component['type']);
$this->assertSame('throbber', $component['settings']['progress_indicator']);
$this->assertSame('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.