You are here

public function DbLogTest::testLogEventNotFoundPage in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/dblog/tests/src/Functional/DbLogTest.php \Drupal\Tests\dblog\Functional\DbLogTest::testLogEventNotFoundPage()
  2. 10 core/modules/dblog/tests/src/Functional/DbLogTest.php \Drupal\Tests\dblog\Functional\DbLogTest::testLogEventNotFoundPage()

Tests not-existing log event page.

File

core/modules/dblog/tests/src/Functional/DbLogTest.php, line 188

Class

DbLogTest
Generate events and verify dblog entries; verify user access to log reports based on permissions.

Namespace

Drupal\Tests\dblog\Functional

Code

public function testLogEventNotFoundPage() {

  // Login the admin user.
  $this
    ->drupalLogin($this->adminUser);

  // Try to read details of non-existent event.
  $this
    ->drupalGet('admin/reports/dblog/event/999999');

  // Verify 404 response.
  $this
    ->assertSession()
    ->statusCodeEquals(404);
}