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 67
Definition of Drupal\filter\Tests\FilterFormatAccessTest.

Class

FilterFormatAccessTest
Tests the filter format access functionality in the Filter module.

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 three text formats. Two text formats are created for all users so
  // that the drop-down list appears for all tests.
  $this
    ->drupalLogin($this->filter_admin_user);
  $formats = array();
  for ($i = 0; $i < 3; $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->second_allowed_format, $this->disallowed_format) = $formats;
  $this
    ->drupalLogout();

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

  // Create an administrative user who has access to use all three 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->second_allowed_format),
    filter_permission_name($this->disallowed_format),
  ));
}