You are here

public function MigrateUserProfileEntityDisplayTest::testUserProfileFields in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserProfileEntityDisplayTest.php \Drupal\Tests\user\Kernel\Migrate\d6\MigrateUserProfileEntityDisplayTest::testUserProfileFields()

Tests migration of user profile fields.

File

core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserProfileEntityDisplayTest.php, line 30

Class

MigrateUserProfileEntityDisplayTest
Tests the user profile entity display migration.

Namespace

Drupal\Tests\user\Kernel\Migrate\d6

Code

public function testUserProfileFields() {
  $display = EntityViewDisplay::load('user.user.default');

  // Test a text field.
  $component = $display
    ->getComponent('profile_color');
  $this
    ->assertIdentical('text_default', $component['type']);

  // Test a list field.
  $component = $display
    ->getComponent('profile_bands');
  $this
    ->assertIdentical('text_default', $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 a checkbox field.
  $component = $display
    ->getComponent('profile_really_really_love_mig');
  $this
    ->assertIdentical('list_default', $component['type']);
}