You are here

public function DbLogTest::verifySort 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::verifySort()
  2. 10 core/modules/dblog/tests/src/Functional/DbLogTest.php \Drupal\Tests\dblog\Functional\DbLogTest::verifySort()

Verifies the sorting functionality of the database logging reports table.

Parameters

string $sort: The sort direction.

string $order: The order by which the table should be sorted.

1 call to DbLogTest::verifySort()
DbLogTest::testDbLog in core/modules/dblog/tests/src/Functional/DbLogTest.php
Tests Database Logging module functionality through interfaces.

File

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

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 verifySort($sort = 'asc', $order = 'Date') {
  $this
    ->drupalGet('admin/reports/dblog', [
    'query' => [
      'sort' => $sort,
      'order' => $order,
    ],
  ]);
  $this
    ->assertSession()
    ->statusCodeEquals(200);
  $this
    ->assertSession()
    ->pageTextContains('Recent log messages');
}