You are here

LazyLoadFormatterTest.php in Video Embed Field 8

Same filename and directory in other branches
  1. 8.2 tests/src/FunctionalJavascript/LazyLoadFormatterTest.php

File

tests/src/FunctionalJavascript/LazyLoadFormatterTest.php
View source
<?php

namespace Drupal\Tests\video_embed_field\FunctionalJavascript;

use Drupal\FunctionalJavascriptTests\WebDriverTestBase;
use Drupal\Tests\video_embed_field\Functional\EntityDisplaySetupTrait;

/**
 * Test the lazy load formatter.
 *
 * @group video_embed_field
 */
class LazyLoadFormatterTest extends WebDriverTestBase {
  use EntityDisplaySetupTrait;

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'node',
    'video_embed_field',
    'video_embed_field_mock_provider',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this
      ->setupEntityDisplays();
  }

  /**
   * Test the lazy load formatter.
   */
  public function testColorboxFormatter() {
    $this
      ->setDisplayComponentSettings('video_embed_field_lazyload', [
      'autoplay' => TRUE,
      'responsive' => TRUE,
    ]);
    $node = $this
      ->createVideoNode('https://example.com/mock_video');
    $this
      ->drupalGet('node/' . $node
      ->id());
    $this
      ->click('.video-embed-field-lazy');
    $this
      ->assertSession()
      ->elementExists('css', '.video-embed-field-lazy .video-embed-field-responsive-video');

    // Make sure the right library files are loaded on the page.
    $this
      ->assertSession()
      ->elementExists('css', 'link[href*="video_embed_field.responsive-video.css"]');
  }

}

Classes

Namesort descending Description
LazyLoadFormatterTest Test the lazy load formatter.