public function SystemAuthorizeTest::testFileTransferHooks in Drupal 10
Same name and namespace in other branches
- 8 core/modules/system/tests/src/Functional/System/SystemAuthorizeTest.php \Drupal\Tests\system\Functional\System\SystemAuthorizeTest::testFileTransferHooks()
- 9 core/modules/system/tests/src/Functional/System/SystemAuthorizeTest.php \Drupal\Tests\system\Functional\System\SystemAuthorizeTest::testFileTransferHooks()
Tests the FileTransfer hooks.
File
- core/
modules/ system/ tests/ src/ Functional/ System/ SystemAuthorizeTest.php, line 53
Class
- SystemAuthorizeTest
- Tests the authorize.php script and related API.
Namespace
Drupal\Tests\system\Functional\SystemCode
public function testFileTransferHooks() {
$page_title = $this
->randomMachineName(16);
$this
->drupalGetAuthorizePHP($page_title);
$this
->assertSession()
->titleEquals("{$page_title} | Drupal");
$this
->assertSession()
->pageTextNotContains('It appears you have reached this page in error.');
$this
->assertSession()
->pageTextContains('To continue, provide your server connection details');
// Make sure we see the new connection method added by system_test.
$this
->assertSession()
->pageTextContains('System Test FileTransfer');
// Make sure the settings form callback works.
$this
->assertSession()
->pageTextContains('System Test Username');
// Test that \Drupal\Core\Render\BareHtmlPageRenderer adds assets as
// expected to the first page of the authorize.php script.
$this
->assertSession()
->responseContains('core/misc/states.js');
}