MediaRequirementsTest.php

Same filename and directory in other branches
  1. 10 core/modules/media/tests/src/Functional/MediaRequirementsTest.php
  2. 11.x core/modules/media/tests/src/Functional/MediaRequirementsTest.php

Namespace

Drupal\Tests\media\Functional

File

core/modules/media/tests/src/Functional/MediaRequirementsTest.php

View source
<?php

namespace Drupal\Tests\media\Functional;


/**
 * Tests the Media module's requirements checks.
 *
 * @group media
 */
class MediaRequirementsTest extends MediaFunctionalTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * Tests that the requirements check can handle a missing source field.
   */
  public function testMissingSourceFieldDefinition() {
    $media_type = $this->createMediaType('test');
    /** @var \Drupal\field\FieldConfigInterface $field_definition */
    $field_definition = $media_type->getSource()
      ->getSourceFieldDefinition($media_type);
    /** @var \Drupal\field\FieldStorageConfigInterface $field_storage_definition */
    $field_storage_definition = $field_definition->getFieldStorageDefinition();
    $field_definition->delete();
    $field_storage_definition->delete();
    $valid_media_type = $this->createMediaType('test');
    $this->drupalLogin($this->rootUser);
    $this->drupalGet('/admin/reports/status');
    $this->assertSession()
      ->statusCodeEquals(200);
    $this->assertSession()
      ->pageTextContains("The source field definition for the {$media_type->label()} media type is missing.");
    $this->assertSession()
      ->pageTextNotContains("The source field definition for the {$valid_media_type->label()} media type is missing.");
  }

}

Classes

Title Deprecated Summary
MediaRequirementsTest Tests the Media module's requirements checks.

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