function UpdateUploadTest::testFileNameExtensionMerging

Ensures that archiver extensions are properly merged in the UI.

File

drupal/core/modules/update/lib/Drupal/update/Tests/UpdateUploadTest.php, line 68
Definition of Drupal\update\Tests\UpdateUploadTest.

Class

UpdateUploadTest
Tests project upload and extract functionality.

Namespace

Drupal\update\Tests

Code

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

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

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