You are here

public function UpdateUploadTest::testFileNameExtensionMerging in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/update/tests/src/Functional/UpdateUploadTest.php \Drupal\Tests\update\Functional\UpdateUploadTest::testFileNameExtensionMerging()

Ensures that archiver extensions are properly merged in the UI.

File

core/modules/update/tests/src/Functional/UpdateUploadTest.php, line 152

Class

UpdateUploadTest
Tests the Update Manager module's upload and extraction functionality.

Namespace

Drupal\Tests\update\Functional

Code

public function testFileNameExtensionMerging() {
  $this
    ->drupalGet('admin/modules/install');

  // Make sure the bogus extension supported by update_test.module is there.
  $this
    ->assertSession()
    ->responseMatches('/file extensions are supported:.*update-test-extension/');

  // Make sure it didn't clobber the first option from core.
  $this
    ->assertSession()
    ->responseMatches('/file extensions are supported:.*tar/');
}