You are here

public function EditorMediaDialogTest::testBuildForm in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/media/tests/src/Kernel/EditorMediaDialogTest.php \Drupal\Tests\media\Kernel\EditorMediaDialogTest::testBuildForm()

Tests that the form builds successfully.

@covers ::buildForm

File

core/modules/media/tests/src/Kernel/EditorMediaDialogTest.php, line 52

Class

EditorMediaDialogTest
@coversDefaultClass \Drupal\media\Form\EditorMediaDialog @group media

Namespace

Drupal\Tests\media\Kernel

Code

public function testBuildForm() {
  $format = FilterFormat::create([
    'filters' => [
      'media_embed' => [
        'status' => TRUE,
      ],
    ],
  ]);
  $editor = $this
    ->prophesize(EditorInterface::class);
  $editor
    ->getFilterFormat()
    ->willReturn($format);

  // Create a sample media entity to be embedded.
  $media = Media::create([
    'bundle' => $this
      ->createMediaType('test')
      ->id(),
    'name' => 'Screaming hairy armadillo',
    'field_media_test' => $this
      ->randomString(),
  ]);
  $media
    ->save();
  $form_state = new FormState();
  $form_state
    ->setUserInput([
    'editor_object' => [
      'attributes' => [
        'data-entity-type' => 'media',
        'data-entity-uuid' => $media
          ->uuid(),
        'data-align' => 'center',
      ],
      'hasCaption' => 'false',
      'label' => $media
        ->label(),
      'link' => '',
      'hostEntityLangcode' => $media
        ->language()
        ->getId(),
      'classes' => '',
    ],
  ]);
  $form_state
    ->setRequestMethod('POST');
  $form = EditorMediaDialog::create($this->container)
    ->buildForm([], $form_state, $editor
    ->reveal());
  $this
    ->assertNotNull($form, 'Form should have been built without errors.');
}