You are here

public function PermissionsLockUnrestrictedTestCase::setUp in Permissions Lock 8

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

src/Tests/PermissionsLockUnrestrictedTestCase.php, line 24

Class

PermissionsLockUnrestrictedTestCase
Tests for unrestricted users

Namespace

Drupal\permissions_lock\Tests

Code

public function setUp() {
  parent::setUp('permissions_lock');

  // Enable modules required for the test
  // lock the 'use PHP for settings' permission for testing purposes
  \Drupal::configFactory()
    ->getEditable('permissions_lock.settings')
    ->set('permissions_lock_locked_perm', array_combine([
    'access site in maintenance mode',
  ], [
    'access site in maintenance mode',
  ]))
    ->save();

  // lock the 'authenticated user' role
  \Drupal::configFactory()
    ->getEditable('permissions_lock.settings')
    ->set('permissions_lock_locked_roles', [
    '2' => '2',
  ])
    ->save();

  // Create and log in a user
  $unrestricted_user = $this
    ->drupalCreateUser([
    'administer permissions',
    'manage permissions unrestricted',
  ]);
  $this
    ->drupalLogin($unrestricted_user);
}