function UserAuthTest::testAuthenticateWithCorrectPasswordAndNewPasswordHash

Same name and namespace in other branches
  1. 9 core/modules/user/tests/src/Unit/UserAuthTest.php \Drupal\Tests\user\Unit\UserAuthTest::testAuthenticateWithCorrectPasswordAndNewPasswordHash()
  2. 8.9.x core/modules/user/tests/src/Unit/UserAuthTest.php \Drupal\Tests\user\Unit\UserAuthTest::testAuthenticateWithCorrectPasswordAndNewPasswordHash()
  3. 11.x core/modules/user/tests/src/Unit/UserAuthTest.php \Drupal\Tests\user\Unit\UserAuthTest::testAuthenticateWithCorrectPasswordAndNewPasswordHash()

Tests the authenticate method with a correct password & new password hash.

@covers ::authenticate

File

core/modules/user/tests/src/Unit/UserAuthTest.php, line 208

Class

UserAuthTest
@coversDefaultClass \Drupal\user\UserAuth[[api-linebreak]] @group user

Namespace

Drupal\Tests\user\Unit

Code

public function testAuthenticateWithCorrectPasswordAndNewPasswordHash() : void {
  $this->testUser
    ->expects($this->once())
    ->method('id')
    ->willReturn(1);
  $this->testUser
    ->expects($this->once())
    ->method('setPassword')
    ->with($this->password);
  $this->testUser
    ->expects($this->once())
    ->method('save');
  $this->userStorage
    ->expects($this->once())
    ->method('loadByProperties')
    ->with([
    'name' => $this->username,
  ])
    ->willReturn([
    $this->testUser,
  ]);
  $this->passwordService
    ->expects($this->once())
    ->method('check')
    ->with($this->password, $this->testUser
    ->getPassword())
    ->willReturn(TRUE);
  $this->passwordService
    ->expects($this->once())
    ->method('needsRehash')
    ->with($this->testUser
    ->getPassword())
    ->willReturn(TRUE);
  $this->assertSame(1, $this->userAuth
    ->authenticate($this->username, $this->password));
}

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