You are here

protected function NodeQueryAlterTest::setUp in Zircon Profile 8

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

File

core/modules/node/src/Tests/NodeQueryAlterTest.php, line 34
Contains \Drupal\node\Tests\NodeQueryAlterTest.

Class

NodeQueryAlterTest
Tests that node access queries are properly altered by the node module.

Namespace

Drupal\node\Tests

Code

protected function setUp() {
  parent::setUp();
  node_access_rebuild();

  // Create some content.
  $this
    ->drupalCreateNode();
  $this
    ->drupalCreateNode();
  $this
    ->drupalCreateNode();
  $this
    ->drupalCreateNode();

  // Create user with simple node access permission. The 'node test view'
  // permission is implemented and granted by the node_access_test module.
  $this->accessUser = $this
    ->drupalCreateUser(array(
    'access content overview',
    'access content',
    'node test view',
  ));
  $this->noAccessUser = $this
    ->drupalCreateUser(array(
    'access content overview',
    'access content',
  ));
  $this->noAccessUser2 = $this
    ->drupalCreateUser(array(
    'access content overview',
    'access content',
  ));
}