function ConfigTest::testFileConfigurationPage

Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/src/Functional/File/ConfigTest.php \Drupal\Tests\system\Functional\File\ConfigTest::testFileConfigurationPage()
  2. 10 core/modules/system/tests/src/Functional/File/ConfigTest.php \Drupal\Tests\system\Functional\File\ConfigTest::testFileConfigurationPage()
  3. 11.x core/modules/system/tests/src/Functional/File/ConfigTest.php \Drupal\Tests\system\Functional\File\ConfigTest::testFileConfigurationPage()

Tests file configuration page.

File

core/modules/system/tests/src/Functional/File/ConfigTest.php, line 32

Class

ConfigTest
Tests file system configuration operations.

Namespace

Drupal\Tests\system\Functional\File

Code

public function testFileConfigurationPage() {
    $this->drupalGet('admin/config/media/file-system');
    // Set the file paths to non-default values.
    // The respective directories are created automatically
    // upon form submission.
    $fields = [
        'file_default_scheme' => 'private',
    ];
    // Check that public and private can be selected as default scheme.
    $this->assertSession()
        ->pageTextContains('Public local files served by the webserver.');
    $this->assertSession()
        ->pageTextContains('Private local files served by Drupal.');
    $this->submitForm($fields, 'Save configuration');
    $this->assertSession()
        ->pageTextContains('The configuration options have been saved.');
    foreach ($fields as $field => $value) {
        $this->assertSession()
            ->fieldValueEquals($field, $value);
    }
    // Remove the private path, rebuild the container and verify that private
    // can no longer be selected in the UI.
    $settings['settings']['file_private_path'] = (object) [
        'value' => '',
        'required' => TRUE,
    ];
    $this->writeSettings($settings);
    $this->rebuildContainer();
    $this->drupalGet('admin/config/media/file-system');
    $this->assertSession()
        ->pageTextContains('Public local files served by the webserver.');
    $this->assertSession()
        ->pageTextNotContains('Private local files served by Drupal.');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.