/**
  * Tests default profile functionality.
  */
 public function testDefaultProfile()
 {
     $profile_type = $this->createProfileType('test_defaults', 'test_defaults');
     // Create new profiles.
     $profile1 = Profile::create($expected = ['type' => $profile_type->id(), 'uid' => $this->user1->id()]);
     $profile1->setActive(TRUE);
     $profile1->save();
     $profile2 = Profile::create($expected = ['type' => $profile_type->id(), 'uid' => $this->user1->id()]);
     $profile2->setActive(TRUE);
     $profile2->setDefault(TRUE);
     $profile2->save();
     $this->assertFalse($profile1->isDefault());
     $this->assertTrue($profile2->isDefault());
     $profile1->setDefault(TRUE)->save();
     $this->assertFalse(Profile::load($profile2->id())->isDefault());
     $this->assertTrue(Profile::load($profile1->id())->isDefault());
 }
 /**
  * Provides profile delete form.
  *
  * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
  *   The route match.
  * @param \Drupal\user\UserInterface $user
  *   The user account.
  * @param \Drupal\profile\Entity\ProfileTypeInterface $profile_type
  *   The profile type entity for the profile.
  * @param int $id
  *   The id of the profile to delete.
  *
  * @return array
  *   Returns form array.
  */
 public function deleteProfile(RouteMatchInterface $route_match, UserInterface $user, ProfileTypeInterface $profile_type, $id)
 {
     return $this->entityFormBuilder()->getForm(Profile::load($id), 'delete');
 }
 /**
  * Tests CRUD operations.
  */
 public function testCRUD()
 {
     $types_data = ['profile_type_0' => ['label' => $this->randomMachineName()], 'profile_type_1' => ['label' => $this->randomMachineName()]];
     /** @var ProfileType[] $types */
     $types = [];
     foreach ($types_data as $id => $values) {
         $types[$id] = ProfileType::create(['id' => $id] + $values);
         $types[$id]->save();
     }
     $this->user1 = User::create(['name' => $this->randomMachineName(), 'mail' => $this->randomMachineName() . '@example.com']);
     $this->user1->save();
     $this->user2 = User::create(['name' => $this->randomMachineName(), 'mail' => $this->randomMachineName() . '@example.com']);
     $this->user2->save();
     $this->profileStorage = \Drupal::entityTypeManager()->getStorage('profile');
     // Create a new profile.
     $profile = Profile::create($expected = ['type' => $types['profile_type_0']->id(), 'uid' => $this->user1->id()]);
     $this->assertIdentical($profile->id(), NULL);
     $this->assertTrue($profile->uuid());
     $this->assertIdentical($profile->getType(), $expected['type']);
     $expected_label = t('@type profile of @username (uid: @uid)', ['@type' => $types['profile_type_0']->label(), '@username' => $this->user1->getDisplayName(), '@uid' => $this->user1->id()]);
     $this->assertEqual($profile->label(), $expected_label, new FormattableMarkup('Expected "%expected" but got "%got"', ['%expected' => $expected_label, '%got' => $profile->label()]));
     $this->assertIdentical($profile->getOwnerId(), $this->user1->id());
     $this->assertIdentical($profile->getCreatedTime(), REQUEST_TIME);
     $this->assertIdentical($profile->getChangedTime(), REQUEST_TIME);
     // Save the profile.
     $status = $profile->save();
     $this->assertIdentical($status, SAVED_NEW);
     $this->assertTrue($profile->id());
     $this->assertIdentical($profile->getChangedTime(), REQUEST_TIME);
     // List profiles for the user and verify that the new profile appears.
     $list = $this->profileStorage->loadByProperties(['uid' => $this->user1->id()]);
     $list_ids = array_keys($list);
     $this->assertEqual($list_ids, [(int) $profile->id()]);
     // Reload and update the profile.
     /** @var Profile $profile */
     $profile = Profile::load($profile->id());
     $profile->setChangedTime($profile->getChangedTime() - 1000);
     $original = clone $profile;
     $status = $profile->save();
     $this->assertIdentical($status, SAVED_UPDATED);
     $this->assertIdentical($profile->id(), $original->id());
     $this->assertEqual($profile->getCreatedTime(), REQUEST_TIME);
     $this->assertEqual($original->getChangedTime(), REQUEST_TIME - 1000);
     // Changed time is only updated when saved through the UI form.
     // @see \Drupal\Core\Entity\ContentEntityForm::submitForm().
     $this->assertEqual($profile->getChangedTime(), REQUEST_TIME - 1000);
     // Create a second profile.
     $user1_profile1 = $profile;
     $profile = Profile::create(['type' => $types['profile_type_0']->id(), 'uid' => $this->user1->id()]);
     $status = $profile->save();
     $this->assertIdentical($status, SAVED_NEW);
     $user1_profile = $profile;
     // List profiles for the user and verify that both profiles appear.
     $list = $this->profileStorage->loadByProperties(['uid' => $this->user1->id()]);
     $list_ids = array_keys($list);
     $this->assertEqual($list_ids, [(int) $user1_profile1->id(), (int) $user1_profile->id()]);
     // Delete the second profile and verify that the first still exists.
     $user1_profile->delete();
     $this->assertFalse(Profile::load($user1_profile->id()));
     $list = $this->profileStorage->loadByProperties(['uid' => $this->user1->id()]);
     $list_ids = array_keys($list);
     $this->assertEqual($list_ids, [(int) $user1_profile1->id()]);
     // Create a new second profile.
     $user1_profile = Profile::create(['type' => $types['profile_type_1']->id(), 'uid' => $this->user1->id()]);
     $status = $user1_profile->save();
     $this->assertIdentical($status, SAVED_NEW);
     // Create a profile for the second user.
     $user2_profile1 = Profile::create(['type' => $types['profile_type_0']->id(), 'uid' => $this->user2->id()]);
     $status = $user2_profile1->save();
     $this->assertIdentical($status, SAVED_NEW);
     // Delete the first user and verify that all of its profiles are deleted.
     $this->user1->delete();
     $this->assertFalse(User::load($this->user1->id()));
     $list = $this->profileStorage->loadByProperties(['uid' => $this->user1->id()]);
     $list_ids = array_keys($list);
     $this->assertEqual($list_ids, []);
     // List profiles for the second user and verify that they still exist.
     $list = $this->profileStorage->loadByProperties(['uid' => $this->user2->id()]);
     $list_ids = array_keys($list);
     $this->assertEqual($list_ids, [(int) $user2_profile1->id()]);
     // @todo Rename a profile type; verify that existing profiles are updated.
 }
 /**
  * Tests mark as default action.
  */
 public function testDefaultAction()
 {
     $types_data = ['profile_type_0' => ['label' => $this->randomMachineName(), 'multiple' => TRUE], 'profile_type_1' => ['label' => $this->randomMachineName(), 'multiple' => TRUE]];
     /** @var ProfileType[] $types */
     $types = [];
     foreach ($types_data as $id => $values) {
         $types[$id] = $this->createProfileType($id, $values['label']);
     }
     $restricted_user = $this->drupalCreateUser(['administer profiles', 'edit own ' . $types['profile_type_0']->id() . ' profile', 'edit own ' . $types['profile_type_1']->id() . ' profile']);
     $admin_user = $this->drupalCreateUser(['administer profiles', 'edit any ' . $types['profile_type_0']->id() . ' profile', 'edit any ' . $types['profile_type_1']->id() . ' profile']);
     // Create new profiles.
     $profile_profile_type_0_restricted_user = Profile::create($expected = ['type' => $types['profile_type_0']->id(), 'uid' => $restricted_user->id()]);
     $profile_profile_type_0_restricted_user->setActive(TRUE);
     $profile_profile_type_0_restricted_user->save();
     $profile_profile_type_0_user1_1 = Profile::create($expected = ['type' => $types['profile_type_0']->id(), 'uid' => $this->user1->id()]);
     $profile_profile_type_0_user1_1->setActive(TRUE);
     $profile_profile_type_0_user1_1->save();
     $profile_profile_type_0_user1_2 = Profile::create($expected = ['type' => $types['profile_type_0']->id(), 'uid' => $this->user1->id()]);
     $profile_profile_type_0_user1_2->setActive(TRUE);
     $profile_profile_type_0_user1_2->save();
     $profile_profile_type_1_user1 = Profile::create($expected = ['type' => $types['profile_type_1']->id(), 'uid' => $this->user1->id()]);
     $profile_profile_type_1_user1->setActive(TRUE);
     $profile_profile_type_1_user1->save();
     $profile_profile_type_1_user2 = Profile::create($expected = ['type' => $types['profile_type_1']->id(), 'uid' => $this->user2->id()]);
     $profile_profile_type_1_user2->setActive(TRUE);
     $profile_profile_type_1_user2->save();
     $profile_profile_type_1_user1_inactive = Profile::create($expected = ['type' => $types['profile_type_1']->id(), 'uid' => $this->user1->id()]);
     $profile_profile_type_1_user1_inactive->setActive(FALSE);
     $profile_profile_type_1_user1_inactive->save();
     $profile_profile_type_1_user1_active = Profile::create($expected = ['type' => $types['profile_type_1']->id(), 'uid' => $this->user1->id()]);
     $profile_profile_type_1_user1_active->isActive(TRUE);
     $profile_profile_type_1_user1_active->save();
     // Make sure that $restricted_user is allowed to set default his own profile
     // and not others'.
     $this->drupalLogin($restricted_user);
     $this->drupalGet('admin/config/people/profiles');
     $this->clickLink('Mark as default', 0);
     $this->assertTrue(Profile::load($profile_profile_type_0_restricted_user->id())->isDefault());
     $this->clickLink('Mark as default', 1);
     $this->assertResponse(403);
     $this->drupalLogout();
     $this->drupalLogin($admin_user);
     $this->drupalGet('admin/config/people/profiles');
     // Mark $profile_profile_type_0_user1_1 as default
     // $profile_profile_type_0_user1_2 should stay not default.
     $this->clickLink('Mark as default', 0);
     $this->assertTrue(Profile::load($profile_profile_type_0_user1_1->id())->isDefault());
     $this->assertFalse($profile_profile_type_0_user1_2->isDefault());
     // Mark $profile_profile_type_0_user1_2 as default
     // $profile_profile_type_0_user1_1 should become not default.
     $profile_profile_type_0_user1_2->setDefault(TRUE);
     $profile_profile_type_0_user1_2->save();
     $this->assertTrue($profile_profile_type_0_user1_2->isDefault());
     $this->assertFalse($profile_profile_type_0_user1_1->isDefault());
     // Mark $profile_profile_type_1_user1 as default
     // $profile_profile_type_1_user2 should stay not default.
     $this->clickLink('Mark as default', 1);
     $this->assertTrue(Profile::load($profile_profile_type_1_user1->id())->isDefault());
     $this->assertFalse($profile_profile_type_1_user2->isDefault());
     // Mark $profile_profile_type_1_user2 as default
     // $profile_profile_type_1_user1 should stay default.
     $profile_profile_type_1_user2->setDefault(TRUE);
     $profile_profile_type_1_user2->save();
     $this->assertTrue($profile_profile_type_1_user2->isDefault());
     $this->assertTrue(Profile::load($profile_profile_type_1_user1->id())->isDefault());
     // Mark $profile_profile_type_1_user1_inactive as default
     // $profile_profile_type_1_user1_active should stay not default.
     $this->clickLink('Mark as default', 2);
     $this->assertTrue(Profile::load($profile_profile_type_1_user1_inactive->id())->isDefault());
     $this->assertFalse($profile_profile_type_1_user1_active->isDefault());
     // Mark $profile_profile_type_1_user1_active as default
     // $profile_profile_type_1_user1_inactive should stay default.
     $profile_profile_type_1_user1_active->setDefault(TRUE);
     $profile_profile_type_1_user1_active->save();
     $this->assertTrue($profile_profile_type_1_user1_active->isDefault());
     $this->assertTrue(Profile::load($profile_profile_type_1_user1_inactive->id())->isDefault());
 }