You are here

public function FileVideoFormatterTest::testAttributes in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/file/tests/src/Functional/Formatter/FileVideoFormatterTest.php \Drupal\Tests\file\Functional\Formatter\FileVideoFormatterTest::testAttributes()
  2. 9 core/modules/file/tests/src/Functional/Formatter/FileVideoFormatterTest.php \Drupal\Tests\file\Functional\Formatter\FileVideoFormatterTest::testAttributes()

Tests that the attributes added to the formatter are applied on render.

File

core/modules/file/tests/src/Functional/Formatter/FileVideoFormatterTest.php, line 66

Class

FileVideoFormatterTest
@coversDefaultClass \Drupal\file\Plugin\Field\FieldFormatter\FileVideoFormatter @group file

Namespace

Drupal\Tests\file\Functional\Formatter

Code

public function testAttributes() {
  $field_config = $this
    ->createMediaField('file_video', 'mp4', [
    'autoplay' => TRUE,
    'loop' => TRUE,
    'muted' => TRUE,
  ]);
  file_put_contents('public://file.mp4', str_repeat('t', 10));
  $file = File::create([
    'uri' => 'public://file.mp4',
    'filename' => 'file.mp4',
  ]);
  $file
    ->save();
  $entity = EntityTest::create([
    $field_config
      ->getName() => [
      [
        'target_id' => $file
          ->id(),
      ],
    ],
  ]);
  $entity
    ->save();
  $this
    ->drupalGet($entity
    ->toUrl());
  $file_url = \Drupal::service('file_url_generator')
    ->generateString($file
    ->getFileUri());
  $assert_session = $this
    ->assertSession();
  $assert_session
    ->elementExists('css', "video[autoplay='autoplay'] > source[src='{$file_url}'][type='video/mp4']");
  $assert_session
    ->elementExists('css', "video[loop='loop'] > source[src='{$file_url}'][type='video/mp4']");
  $assert_session
    ->elementExists('css', "video[muted='muted'] > source[src='{$file_url}'][type='video/mp4']");
}