function FilterFormatAccessTest::setUp

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

Generates a random database prefix and installs Drupal with the specified installation profile in Drupal\simpletest\WebTestBase::$profile into the prefixed database. Afterwards, installs any additional modules specified by the test.

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.

Parameters

...: List of modules to enable for the duration of the test. This can be either a single array or a variable number of string arguments.

Overrides WebTestBase::setUp

See also

Drupal\simpletest\WebTestBase::prepareDatabasePrefix()

Drupal\simpletest\WebTestBase::changeDatabasePrefix()

Drupal\simpletest\WebTestBase::prepareEnvironment()

File

drupal/core/modules/filter/lib/Drupal/filter/Tests/FilterFormatAccessTest.php, line 27
Definition of Drupal\filter\Tests\FilterFormatAccessTest.

Class

FilterFormatAccessTest

Namespace

Drupal\filter\Tests

Code

function setUp() {
  parent::setUp();
  $this
    ->drupalCreateContentType(array(
    'type' => 'page',
    'name' => 'Basic page',
  ));

  // Create a user who can administer text formats, but does not have
  // specific permission to use any of them.
  $this->filter_admin_user = $this
    ->drupalCreateUser(array(
    'administer filters',
    'create page content',
    'edit any page content',
  ));

  // Create two text formats.
  $this
    ->drupalLogin($this->filter_admin_user);
  $formats = array();
  for ($i = 0; $i < 2; $i++) {
    $edit = array(
      'format' => drupal_strtolower($this
        ->randomName()),
      'name' => $this
        ->randomName(),
    );
    $this
      ->drupalPost('admin/config/content/formats/add', $edit, t('Save configuration'));
    $this
      ->resetFilterCaches();
    $formats[] = filter_format_load($edit['format']);
  }
  list($this->allowed_format, $this->disallowed_format) = $formats;
  $this
    ->drupalLogout();

  // Create a regular user with access to one of the formats.
  $this->web_user = $this
    ->drupalCreateUser(array(
    'create page content',
    'edit any page content',
    filter_permission_name($this->allowed_format),
  ));

  // Create an administrative user who has access to use both formats.
  $this->admin_user = $this
    ->drupalCreateUser(array(
    'administer filters',
    'create page content',
    'edit any page content',
    filter_permission_name($this->allowed_format),
    filter_permission_name($this->disallowed_format),
  ));
}