Mercurial > hg > isophonics-drupal-site
view core/modules/statistics/tests/src/Functional/StatisticsTestBase.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line 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 */ public 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(); } }