function FileTransferAuthorizeFormTest::testViaAuthorize
Same name in other branches
- 8.9.x core/modules/update/tests/src/Functional/FileTransferAuthorizeFormTest.php \Drupal\Tests\update\Functional\FileTransferAuthorizeFormTest::testViaAuthorize()
- 10 core/modules/update/tests/src/Functional/FileTransferAuthorizeFormTest.php \Drupal\Tests\update\Functional\FileTransferAuthorizeFormTest::testViaAuthorize()
- 11.x core/modules/update/tests/src/Functional/FileTransferAuthorizeFormTest.php \Drupal\Tests\update\Functional\FileTransferAuthorizeFormTest::testViaAuthorize()
Tests the Update Manager module upload via authorize.php functionality.
@dataProvider archiveFileUrlProvider
File
-
core/
modules/ update/ tests/ src/ Functional/ FileTransferAuthorizeFormTest.php, line 51
Class
- FileTransferAuthorizeFormTest
- Tests the Update Manager module upload via authorize.php functionality.
Namespace
Drupal\Tests\update\FunctionalCode
public function testViaAuthorize($url) {
// Ensure the that we can select which file transfer backend to use.
\Drupal::state()->set('test_uploaders_via_prompt', TRUE);
// Ensure the module does not already exist.
$this->drupalGet('admin/modules');
$this->assertSession()
->pageTextNotContains('Update test new module');
$edit = [
'project_url' => $url,
];
$this->drupalGet('admin/modules/install');
$this->submitForm($edit, 'Continue');
$edit = [
'connection_settings[authorize_filetransfer_default]' => 'system_test',
'connection_settings[system_test][update_test_username]' => $this->randomMachineName(),
];
$this->submitForm($edit, 'Continue');
$this->assertSession()
->pageTextContains('Files were added successfully.');
// Ensure the module is available to install.
$this->drupalGet('admin/modules');
$this->assertSession()
->pageTextContains('Update test new module');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.