function FloodTest::testDatabaseBackend

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Kernel/System/FloodTest.php \Drupal\Tests\system\Kernel\System\FloodTest::testDatabaseBackend()
  2. 8.9.x core/modules/system/tests/src/Kernel/System/FloodTest.php \Drupal\Tests\system\Kernel\System\FloodTest::testDatabaseBackend()
  3. 11.x core/modules/system/tests/src/Kernel/System/FloodTest.php \Drupal\Tests\system\Kernel\System\FloodTest::testDatabaseBackend()

Tests flood control database backend.

File

core/modules/system/tests/src/Kernel/System/FloodTest.php, line 55

Class

FloodTest
Functional tests for the flood control mechanism.

Namespace

Drupal\Tests\system\Kernel\System

Code

public function testDatabaseBackend() : void {
  $threshold = 1;
  $window_expired = -1;
  $name = 'flood_test_cleanup';
  $connection = \Drupal::service('database');
  $request_stack = \Drupal::service('request_stack');
  $time = \Drupal::service(TimeInterface::class);
  $flood = new DatabaseBackend($connection, $request_stack, $time);
  $this->assertTrue($flood->isAllowed($name, $threshold));
  // Register expired event.
  $flood->register($name, $window_expired);
  // Verify event is not allowed.
  $this->assertFalse($flood->isAllowed($name, $threshold));
  // Run cron and verify event is now allowed.
  $flood->garbageCollection();
  $this->assertTrue($flood->isAllowed($name, $threshold));
  // Register unexpired event.
  $flood->register($name);
  // Verify event is not allowed.
  $this->assertFalse($flood->isAllowed($name, $threshold));
  // Run cron and verify event is still not allowed.
  $flood->garbageCollection();
  $this->assertFalse($flood->isAllowed($name, $threshold));
}

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