function UserPasswordResetTest::testUserResetPasswordUserFloodControl

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

Tests password reset flood control for one user.

File

core/modules/user/tests/src/Functional/UserPasswordResetTest.php, line 412

Class

UserPasswordResetTest
Ensure that password reset methods work as expected.

Namespace

Drupal\Tests\user\Functional

Code

public function testUserResetPasswordUserFloodControl() : void {
    \Drupal::configFactory()->getEditable('user.flood')
        ->set('user_limit', 3)
        ->save();
    $edit = [
        'name' => $this->account
            ->getAccountName(),
    ];
    // Count email messages before to compare with after.
    $before = count($this->drupalGetMails([
        'id' => 'user_password_reset',
    ]));
    // Try 3 requests that should not trigger flood control.
    for ($i = 0; $i < 3; $i++) {
        $this->drupalGet('user/password');
        $this->submitForm($edit, 'Submit');
        $this->assertValidPasswordReset($edit['name']);
    }
    // Ensure 3 emails were sent.
    $this->assertCount($before + 3, $this->drupalGetMails([
        'id' => 'user_password_reset',
    ]), '3 emails sent without triggering flood control.');
    // The next request should trigger flood control.
    $this->drupalGet('user/password');
    $this->submitForm($edit, 'Submit');
    // Ensure no further emails were sent.
    $this->assertCount($before + 3, $this->drupalGetMails([
        'id' => 'user_password_reset',
    ]), 'No further email was sent after triggering flood control.');
}

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