You are here

class MediaRequirementsTest in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/media/tests/src/Functional/MediaRequirementsTest.php \Drupal\Tests\media\Functional\MediaRequirementsTest

Tests the Media module's requirements checks.

@group media

Hierarchy

Expanded class hierarchy of MediaRequirementsTest

File

core/modules/media/tests/src/Functional/MediaRequirementsTest.php, line 10

Namespace

Drupal\Tests\media\Functional
View source
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.");
  }

}

Members