You are here

class UserSaveTest in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/user/tests/src/Kernel/UserSaveTest.php \Drupal\Tests\user\Kernel\UserSaveTest
  2. 9 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);
  }

}

Members