function UpdateUploadTest::testFileNameExtensionMerging
Ensures that archiver extensions are properly merged in the UI.
File
- 
              core/
modules/ update/ tests/ src/ Functional/ UpdateUploadTest.php, line 155  
Class
- UpdateUploadTest
 - Tests the Update Manager module's upload and extraction functionality.
 
Namespace
Drupal\Tests\update\FunctionalCode
public function testFileNameExtensionMerging() : void {
  $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/');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.