You are here

protected function BooleanFormatterSettingsTest::setUp in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/field/src/Tests/Boolean/BooleanFormatterSettingsTest.php \Drupal\field\Tests\Boolean\BooleanFormatterSettingsTest::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/field/src/Tests/Boolean/BooleanFormatterSettingsTest.php, line 47
Contains \Drupal\field\Tests\Boolean\BooleanFormatterSettingsTest.

Class

BooleanFormatterSettingsTest
Tests the Boolean field formatter settings.

Namespace

Drupal\field\Tests\Boolean

Code

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

  // Create a content type. Use Node because it has Field UI pages that work.
  $type_name = Unicode::strtolower($this
    ->randomMachineName(8)) . '_test';
  $type = $this
    ->drupalCreateContentType(array(
    'name' => $type_name,
    'type' => $type_name,
  ));
  $this->bundle = $type
    ->id();
  $admin_user = $this
    ->drupalCreateUser(array(
    'access content',
    'administer content types',
    'administer node fields',
    'administer node display',
    'bypass node access',
    'administer nodes',
  ));
  $this
    ->drupalLogin($admin_user);
  $this->fieldName = Unicode::strtolower($this
    ->randomMachineName(8));
  $field_storage = FieldStorageConfig::create([
    'field_name' => $this->fieldName,
    'entity_type' => 'node',
    'type' => 'boolean',
  ]);
  $field_storage
    ->save();
  $instance = FieldConfig::create([
    'field_storage' => $field_storage,
    'bundle' => $this->bundle,
    'label' => $this
      ->randomMachineName(),
  ]);
  $instance
    ->save();
  $display = entity_get_display('node', $this->bundle, 'default')
    ->setComponent($this->fieldName, [
    'type' => 'boolean',
    'settings' => [],
  ]);
  $display
    ->save();
}