You are here

protected function ContextualDynamicContextTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/contextual/src/Tests/ContextualDynamicContextTest.php \Drupal\contextual\Tests\ContextualDynamicContextTest::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 WebTestBase::setUp

File

core/modules/contextual/src/Tests/ContextualDynamicContextTest.php, line 52
Contains \Drupal\contextual\Tests\ContextualDynamicContextTest.

Class

ContextualDynamicContextTest
Tests if contextual links are showing on the front page depending on permissions.

Namespace

Drupal\contextual\Tests

Code

protected function setUp() {
  parent::setUp();
  $this
    ->drupalCreateContentType(array(
    'type' => 'page',
    'name' => 'Basic page',
  ));
  $this
    ->drupalCreateContentType(array(
    'type' => 'article',
    'name' => 'Article',
  ));
  ConfigurableLanguage::createFromLangcode('it')
    ->save();
  $this
    ->rebuildContainer();
  $this->editorUser = $this
    ->drupalCreateUser(array(
    'access content',
    'access contextual links',
    'edit any article content',
  ));
  $this->authenticatedUser = $this
    ->drupalCreateUser(array(
    'access content',
    'access contextual links',
  ));
  $this->anonymousUser = $this
    ->drupalCreateUser(array(
    'access content',
  ));
}