public function MigrateUserProfileEntityFormDisplayTest::testUserProfileEntityFormDisplay in Drupal 9
Same name and namespace in other branches
- 8 core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserProfileEntityFormDisplayTest.php \Drupal\Tests\user\Kernel\Migrate\d6\MigrateUserProfileEntityFormDisplayTest::testUserProfileEntityFormDisplay()
- 10 core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserProfileEntityFormDisplayTest.php \Drupal\Tests\user\Kernel\Migrate\d6\MigrateUserProfileEntityFormDisplayTest::testUserProfileEntityFormDisplay()
Tests migration of user profile fields.
File
- core/
modules/ user/ tests/ src/ Kernel/ Migrate/ d6/ MigrateUserProfileEntityFormDisplayTest.php, line 30
Class
- MigrateUserProfileEntityFormDisplayTest
- Tests the user profile entity form display migration.
Namespace
Drupal\Tests\user\Kernel\Migrate\d6Code
public function testUserProfileEntityFormDisplay() {
$display = EntityFormDisplay::load('user.user.default');
// Test a text field.
$component = $display
->getComponent('profile_color');
$this
->assertSame('text_textfield', $component['type']);
// Test a list field.
$component = $display
->getComponent('profile_bands');
$this
->assertSame('text_textfield', $component['type']);
// Test a date field.
$component = $display
->getComponent('profile_birthdate');
$this
->assertSame('datetime_default', $component['type']);
// Test PROFILE_PRIVATE field is hidden.
$this
->assertNull($display
->getComponent('profile_sell_address'));
// Test PROFILE_HIDDEN field is hidden.
$this
->assertNull($display
->getComponent('profile_sold_to'));
// Test that a checkbox field has the proper display label setting.
$component = $display
->getComponent('profile_really_really_love_mig');
$this
->assertSame('boolean_checkbox', $component['type']);
$this
->assertTrue($component['settings']['display_label']);
}