function EditorFileUsageTest::setUp
Overrides EntityKernelTestBase::setUp
File
- 
              core/
modules/ editor/ tests/ src/ Kernel/ EditorFileUsageTest.php, line 32  
Class
- EditorFileUsageTest
 - Tests tracking of file usage by the Text Editor module.
 
Namespace
Drupal\Tests\editor\KernelCode
protected function setUp() : void {
  parent::setUp();
  $this->installEntitySchema('file');
  $this->installSchema('node', [
    'node_access',
  ]);
  $this->installSchema('file', [
    'file_usage',
  ]);
  $this->installConfig([
    'node',
  ]);
  // Add text formats.
  $filtered_html_format = FilterFormat::create([
    'format' => 'filtered_html',
    'name' => 'Filtered HTML',
    'weight' => 0,
    'filters' => [],
  ]);
  $filtered_html_format->save();
  // Set cardinality for body field.
  FieldStorageConfig::loadByName('node', 'body')->setCardinality(FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED)
    ->save();
  // Set up text editor.
  $editor = Editor::create([
    'format' => 'filtered_html',
    'editor' => 'unicorn',
  ]);
  $editor->save();
  // Create a node type for testing.
  $type = NodeType::create([
    'type' => 'page',
    'name' => 'page',
  ]);
  $type->save();
  node_add_body_field($type);
  FieldStorageConfig::create([
    'field_name' => 'description',
    'entity_type' => 'node',
    'type' => 'editor_test_text_long',
    'cardinality' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED,
  ])->save();
  FieldConfig::create([
    'field_name' => 'description',
    'entity_type' => 'node',
    'bundle' => 'page',
    'label' => 'Description',
  ])->save();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.