You are here

MediaInstallTest.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/modules/media/tests/src/Functional/MediaInstallTest.php

File

core/modules/media/tests/src/Functional/MediaInstallTest.php
View source
<?php

namespace Drupal\Tests\media\Functional;

use Drupal\Tests\BrowserTestBase;

/**
 * Tests media Install / Uninstall logic.
 *
 * @group media
 */
class MediaInstallTest extends BrowserTestBase {

  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'media',
  ];

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this
      ->drupalLogin($this
      ->drupalCreateUser([
      'administer modules',
    ]));
  }

  /**
   * Tests reinstalling after being uninstalled.
   */
  public function testReinstallAfterUninstall() {
    $page = $this
      ->getSession()
      ->getPage();
    $assert_session = $this
      ->assertSession();

    // Uninstall the media module.
    $this->container
      ->get('module_installer')
      ->uninstall([
      'media',
    ], FALSE);
    $this
      ->drupalGet('/admin/modules');
    $page
      ->checkField('modules[media][enable]');
    $page
      ->pressButton('Install');
    $assert_session
      ->pageTextNotContains('could not be moved/copied because a file by that name already exists in the destination directory');
    $assert_session
      ->pageTextContains('Module Media has been enabled');
  }

}

Classes

Namesort descending Description
MediaInstallTest Tests media Install / Uninstall logic.