You are here

StatisticsTestBase.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/modules/statistics/tests/src/Functional/StatisticsTestBase.php

File

core/modules/statistics/tests/src/Functional/StatisticsTestBase.php
View source
<?php

namespace Drupal\Tests\statistics\Functional;

use Drupal\Tests\BrowserTestBase;

/**
 * Defines a base class for testing the Statistics module.
 */
abstract class StatisticsTestBase extends BrowserTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'node',
    'block',
    'ban',
    'statistics',
  ];

  /**
   * User with permissions to ban IP's.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $blockingUser;
  protected function setUp() {
    parent::setUp();

    // Create Basic page node type.
    if ($this->profile != 'standard') {
      $this
        ->drupalCreateContentType([
        'type' => 'page',
        'name' => 'Basic page',
      ]);
    }

    // Create user.
    $this->blockingUser = $this
      ->drupalCreateUser([
      'access administration pages',
      'access site reports',
      'ban IP addresses',
      'administer blocks',
      'administer statistics',
      'administer users',
    ]);
    $this
      ->drupalLogin($this->blockingUser);

    // Enable logging.
    $this
      ->config('statistics.settings')
      ->set('count_content_views', 1)
      ->save();
  }

}

Classes

Namesort descending Description
StatisticsTestBase Defines a base class for testing the Statistics module.