function ContactPersonalTest::testPersonalContactFlood

Tests the personal contact form flood protection.

File

drupal/core/modules/contact/lib/Drupal/contact/Tests/ContactPersonalTest.php, line 165
Definition of Drupal\contact\Tests\ContactPersonalTest.

Class

ContactPersonalTest
Tests the personal contact form.

Namespace

Drupal\contact\Tests

Code

function testPersonalContactFlood() {
  $flood_limit = 3;
  config('contact.settings')
    ->set('flood.limit', $flood_limit)
    ->save();

  // Clear flood table in preparation for flood test and allow other checks to complete.
  db_delete('flood')
    ->execute();
  $num_records_flood = db_query("SELECT COUNT(*) FROM {flood}")
    ->fetchField();
  $this
    ->assertIdentical($num_records_flood, '0', 'Flood table emptied.');
  $this
    ->drupalLogin($this->web_user);

  // Submit contact form with correct values and check flood interval.
  for ($i = 0; $i < $flood_limit; $i++) {
    $this
      ->submitPersonalContact($this->contact_user);
    $this
      ->assertText(t('Your message has been sent.'), 'Message sent.');
  }

  // Submit contact form one over limit.
  $this
    ->drupalGet('user/' . $this->contact_user->uid . '/contact');
  $this
    ->assertRaw(t('You cannot send more than %number messages in @interval. Try again later.', array(
    '%number' => $flood_limit,
    '@interval' => format_interval(config('contact.settings')
      ->get('flood.interval')),
  )), 'Normal user denied access to flooded contact form.');

  // Test that the admin user can still access the contact form even though
  // the flood limit was reached.
  $this
    ->drupalLogin($this->admin_user);
  $this
    ->assertNoText('Try again later.', 'Admin user not denied access to flooded contact form.');
}