class UserSaveTest

Same name and namespace in other branches
  1. 11.x core/modules/user/tests/src/Kernel/UserSaveTest.php \Drupal\Tests\user\Kernel\UserSaveTest
  2. 10 core/modules/user/tests/src/Kernel/UserSaveTest.php \Drupal\Tests\user\Kernel\UserSaveTest
  3. 8.9.x core/modules/user/tests/src/Kernel/UserSaveTest.php \Drupal\Tests\user\Kernel\UserSaveTest

Tests account saving for arbitrary new uid.

@group user

Hierarchy

Expanded class hierarchy of UserSaveTest

File

core/modules/user/tests/src/Kernel/UserSaveTest.php, line 13

Namespace

Drupal\Tests\user\Kernel
View source
class UserSaveTest extends KernelTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'system',
    'user',
  ];
  
  /**
   * Ensures that an existing password is unset after the user was saved.
   */
  public function testExistingPasswordRemoval() {
    $this->installSchema('system', [
      'sequences',
    ]);
    $this->installEntitySchema('user');
    /** @var \Drupal\user\Entity\User $user */
    $user = User::create([
      'name' => $this->randomMachineName(),
    ]);
    $user->save();
    $user->setExistingPassword('existing password');
    $this->assertNotNull($user->pass->existing);
    $user->save();
    $this->assertNull($user->pass->existing);
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.