You are here

protected function AccessTestBase::setUp in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/user/src/Tests/Views/AccessTestBase.php \Drupal\user\Tests\Views\AccessTestBase::setUp()

Sets up a Drupal site for running functional and integration tests.

Installs Drupal with the installation profile specified in \Drupal\simpletest\WebTestBase::$profile into the prefixed database.

Afterwards, installs any additional modules specified in the static \Drupal\simpletest\WebTestBase::$modules property of each class in the class hierarchy.

After installation all caches are flushed and several configuration values are reset to the values of the parent site executing the test, since the default values may be incompatible with the environment in which tests are being executed.

Overrides UserTestBase::setUp

File

core/modules/user/src/Tests/Views/AccessTestBase.php, line 53
Contains \Drupal\user\Tests\Views\AccessTestBase.

Class

AccessTestBase
A common test base class for the user access plugin tests.

Namespace

Drupal\user\Tests\Views

Code

protected function setUp() {
  parent::setUp();
  $this
    ->drupalPlaceBlock('system_breadcrumb_block');
  $this
    ->enableViewsTestModule();
  $this->webUser = $this
    ->drupalCreateUser();
  $roles = $this->webUser
    ->getRoles();
  $this->webRole = $roles[0];
  $this->normalRole = $this
    ->drupalCreateRole(array());
  $this->normalUser = $this
    ->drupalCreateUser(array(
    'views_test_data test permission',
  ));
  $this->normalUser
    ->addRole($this->normalRole);
  $this->normalUser
    ->save();

  // @todo when all the plugin information is cached make a reset function and
  // call it here.
}