function FileVideoFormatterTest::testAttributes

Same name and namespace in other branches
  1. 9 core/modules/file/tests/src/Functional/Formatter/FileVideoFormatterTest.php \Drupal\Tests\file\Functional\Formatter\FileVideoFormatterTest::testAttributes()
  2. 10 core/modules/file/tests/src/Functional/Formatter/FileVideoFormatterTest.php \Drupal\Tests\file\Functional\Formatter\FileVideoFormatterTest::testAttributes()
  3. 11.x 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 <a href="/api/drupal/core%21modules%21file%21src%21Plugin%21Field%21FieldFormatter%21FileVideoFormatter.php/class/FileVideoFormatter/8.9.x" title="Plugin implementation of the &#039;file_video&#039; formatter." class="local">\Drupal\file\Plugin\Field\FieldFormatter\FileVideoFormatter</a> @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 = file_url_transform_relative(file_create_url($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']");
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.