StatisticsTestBase.php
Same filename in other branches
Namespace
Drupal\Tests\statistics\FunctionalFile
-
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 IPs.
*
* @var \Drupal\user\UserInterface
*/
protected $blockingUser;
/**
* {@inheritdoc}
*/
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
Title | Deprecated | Summary |
---|---|---|
StatisticsTestBase | Defines a base class for testing the Statistics module. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.