public function MigrateUserProfileEntityFormDisplayTest::testUserProfileEntityFormDisplay in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/user/src/Tests/Migrate/MigrateUserProfileEntityFormDisplayTest.php \Drupal\user\Tests\Migrate\MigrateUserProfileEntityFormDisplayTest::testUserProfileEntityFormDisplay()
Tests migration of user profile fields.
File
- core/
modules/ user/ src/ Tests/ Migrate/ MigrateUserProfileEntityFormDisplayTest.php, line 35 - Contains \Drupal\user\Tests\Migrate\MigrateUserProfileEntityFormDisplayTest.
Class
- MigrateUserProfileEntityFormDisplayTest
- Tests the user profile entity form display migration.
Namespace
Drupal\user\Tests\MigrateCode
public function testUserProfileEntityFormDisplay() {
$display = EntityFormDisplay::load('user.user.default');
// Test a text field.
$component = $display
->getComponent('profile_color');
$this
->assertIdentical('text_textfield', $component['type']);
// Test a list field.
$component = $display
->getComponent('profile_bands');
$this
->assertIdentical('text_textfield', $component['type']);
// Test a date field.
$component = $display
->getComponent('profile_birthdate');
$this
->assertIdentical('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_love_migrations');
$this
->assertIdentical('boolean_checkbox', $component['type']);
$this
->assertIdentical(true, $component['settings']['display_label']);
}