You are here

protected function EditorLoadingTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/editor/src/Tests/EditorLoadingTest.php \Drupal\editor\Tests\EditorLoadingTest::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/editor/src/Tests/EditorLoadingTest.php, line 50
Contains \Drupal\editor\Tests\EditorLoadingTest.

Class

EditorLoadingTest
Tests loading of text editors.

Namespace

Drupal\editor\Tests

Code

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

  // Let there be T-rex.
  \Drupal::state()
    ->set('editor_test_give_me_a_trex_thanks', TRUE);
  \Drupal::service('plugin.manager.editor')
    ->clearCachedDefinitions();

  // Add text formats.
  $filtered_html_format = entity_create('filter_format', array(
    'format' => 'filtered_html',
    'name' => 'Filtered HTML',
    'weight' => 0,
    'filters' => array(),
  ));
  $filtered_html_format
    ->save();
  $full_html_format = entity_create('filter_format', array(
    'format' => 'full_html',
    'name' => 'Full HTML',
    'weight' => 1,
    'filters' => array(),
  ));
  $full_html_format
    ->save();

  // Create article node type.
  $this
    ->drupalCreateContentType(array(
    'type' => 'article',
    'name' => 'Article',
  ));

  // Create page node type, but remove the body.
  $this
    ->drupalCreateContentType(array(
    'type' => 'page',
    'name' => 'Page',
  ));
  $body = FieldConfig::loadByName('node', 'page', 'body');
  $body
    ->delete();

  // Create a formatted text field, which uses an <input type="text">.
  FieldStorageConfig::create(array(
    'field_name' => 'field_text',
    'entity_type' => 'node',
    'type' => 'text',
  ))
    ->save();
  FieldConfig::create(array(
    'field_name' => 'field_text',
    'entity_type' => 'node',
    'label' => 'Textfield',
    'bundle' => 'page',
  ))
    ->save();
  entity_get_form_display('node', 'page', 'default')
    ->setComponent('field_text')
    ->save();

  // Create 3 users, each with access to different text formats.
  $this->untrustedUser = $this
    ->drupalCreateUser(array(
    'create article content',
    'edit any article content',
  ));
  $this->normalUser = $this
    ->drupalCreateUser(array(
    'create article content',
    'edit any article content',
    'use text format filtered_html',
  ));
  $this->privilegedUser = $this
    ->drupalCreateUser(array(
    'create article content',
    'edit any article content',
    'create page content',
    'edit any page content',
    'use text format filtered_html',
    'use text format full_html',
  ));
}