MediaEmbedFilterTestBase.php
Namespace
Drupal\Tests\media\FunctionalJavascriptFile
- 
              core/modules/ media/ tests/ src/ FunctionalJavascript/ MediaEmbedFilterTestBase.php 
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\media\FunctionalJavascript;
use Drupal\filter\Entity\FilterFormat;
/**
 * Base class for media embed filter configuration tests.
 */
class MediaEmbedFilterTestBase extends MediaJavascriptTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * {@inheritdoc}
   *
   * @todo Remove this class property in https://www.drupal.org/node/3091878/.
   */
  protected $failOnJavascriptConsoleErrors = FALSE;
  
  /**
   * {@inheritdoc}
   */
  public static function setUpBeforeClass() : void {
    parent::setUpBeforeClass();
    // Necessary for @covers to work.
    require_once __DIR__ . '/../../../media.module';
  }
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $format = FilterFormat::create([
      'format' => 'media_embed_test',
      'name' => 'Test format',
      'filters' => [],
    ]);
    $format->save();
    $this->drupalLogin($this->drupalCreateUser([
      'administer filters',
      $format->getPermissionName(),
    ]));
  }
  
  /**
   * Data provider for testing validation when adding and editing media embeds.
   */
  public static function providerTestValidations() : array {
    return [
      'Tests that no filter_html occurs when filter_html not enabled.' => [
        'filter_html_status' => FALSE,
        'filter_align_status' => FALSE,
        'filter_caption_status' => FALSE,
        'filter_html_image_secure_status' => FALSE,
        'media_embed' => TRUE,
        'allowed_html' => FALSE,
        'expected_error_message' => FALSE,
      ],
      'Tests validation when both filter_html and media_embed are disabled.' => [
        'filter_html_status' => FALSE,
        'filter_align_status' => FALSE,
        'filter_caption_status' => FALSE,
        'filter_html_image_secure_status' => FALSE,
        'media_embed' => FALSE,
        'allowed_html' => FALSE,
        'expected_error_message' => FALSE,
      ],
      'Tests validation when media_embed filter not enabled and filter_html is enabled.' => [
        'filter_html_status' => TRUE,
        'filter_align_status' => FALSE,
        'filter_caption_status' => FALSE,
        'filter_html_image_secure_status' => FALSE,
        'media_embed' => FALSE,
        'allowed_html' => 'default',
        'expected_error_message' => FALSE,
      ],
      'Tests validation when drupal-media element has no attributes.' => [
        'filter_html_status' => TRUE,
        'filter_align_status' => FALSE,
        'filter_caption_status' => FALSE,
        'filter_html_image_secure_status' => FALSE,
        'media_embed' => TRUE,
        'allowed_html' => "<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type='1 A I'> <li> <dl> <dt> <dd> <h2 id='jump-*'> <h3 id> <h4 id> <h5 id> <h6 id> <drupal-media>",
        'expected_error_message' => 'The <drupal-media> tag in the allowed HTML tags is missing the following attributes: data-entity-type, data-entity-uuid.',
      ],
      'Tests validation when drupal-media element lacks some required attributes.' => [
        'filter_html_status' => TRUE,
        'filter_align_status' => FALSE,
        'filter_caption_status' => FALSE,
        'filter_html_image_secure_status' => FALSE,
        'media_embed' => TRUE,
        'allowed_html' => "<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type='1 A I'> <li> <dl> <dt> <dd> <h2 id='jump-*'> <h3 id> <h4 id> <h5 id> <h6 id> <drupal-media data-entity-uuid data-align>",
        'expected_error_message' => 'The <drupal-media> tag in the allowed HTML tags is missing the following attributes: data-entity-type.',
      ],
      'Tests validation when both filter_html and media_embed are enabled and configured correctly' => [
        'filter_html_status' => TRUE,
        'filter_align_status' => FALSE,
        'filter_caption_status' => FALSE,
        'filter_html_image_secure_status' => FALSE,
        'media_embed' => TRUE,
        'allowed_html' => "<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type='1 A I'> <li> <dl> <dt> <dd> <h2 id='jump-*'> <h3 id> <h4 id> <h5 id> <h6 id> <drupal-media data-entity-type data-entity-uuid data-view-mode>",
        'expected_error_message' => FALSE,
      ],
      'Order validation: media_embed before all filters' => [
        'filter_html_status' => TRUE,
        'filter_align_status' => TRUE,
        'filter_caption_status' => TRUE,
        'filter_html_image_secure_status' => TRUE,
        'media_embed' => '-5',
        'allowed_html' => "<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type='1 A I'> <li> <dl> <dt> <dd> <h2 id='jump-*'> <h3 id> <h4 id> <h5 id> <h6 id> <drupal-media data-entity-type data-entity-uuid data-view-mode>",
        'expected_error_message' => 'The Embed media filter needs to be placed after the following filters: Align images, Caption images, Restrict images to this site.',
      ],
      'Order validation: media_embed before filter_align' => [
        'filter_html_status' => FALSE,
        'filter_align_status' => TRUE,
        'filter_caption_status' => FALSE,
        'filter_html_image_secure_status' => FALSE,
        'media_embed' => '-5',
        'allowed_html' => '',
        'expected_error_message' => 'The Embed media filter needs to be placed after the Align images filter.',
      ],
      'Order validation: media_embed before filter_caption' => [
        'filter_html_status' => FALSE,
        'filter_align_status' => FALSE,
        'filter_caption_status' => TRUE,
        'filter_html_image_secure_status' => FALSE,
        'media_embed' => '-5',
        'allowed_html' => '',
        'expected_error_message' => 'The Embed media filter needs to be placed after the Caption images filter.',
      ],
      'Order validation: media_embed before filter_html_image_secure' => [
        'filter_html_status' => FALSE,
        'filter_align_status' => FALSE,
        'filter_caption_status' => FALSE,
        'filter_html_image_secure_status' => TRUE,
        'media_embed' => '-5',
        'allowed_html' => '',
        'expected_error_message' => 'The Embed media filter needs to be placed after the Restrict images to this site filter.',
      ],
      'Order validation: media_embed after filter_align and filter_caption but before filter_html_image_secure' => [
        'filter_html_status' => TRUE,
        'filter_align_status' => TRUE,
        'filter_caption_status' => TRUE,
        'filter_html_image_secure_status' => TRUE,
        'media_embed' => '5',
        'allowed_html' => "<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type='1 A I'> <li> <dl> <dt> <dd> <h2 id='jump-*'> <h3 id> <h4 id> <h5 id> <h6 id> <drupal-media data-entity-type data-entity-uuid data-view-mode>",
        'expected_error_message' => 'The Embed media filter needs to be placed after the Restrict images to this site filter.',
      ],
    ];
  }
  
  /**
   * Show visually hidden fields.
   */
  protected function showHiddenFields() {
    $script = <<<JS
          var hidden_fields = document.querySelectorAll(".hidden");
    
          [].forEach.call(hidden_fields, function(el) {
            el.classList.remove("hidden");
          });
    JS;
    $this->getSession()
      ->executeScript($script);
  }
}Classes
| Title | Deprecated | Summary | 
|---|---|---|
| MediaEmbedFilterTestBase | Base class for media embed filter configuration tests. | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
