You are here

protected function SitesDirectoryHardeningTest::makeWritable in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/System/SitesDirectoryHardeningTest.php \Drupal\Tests\system\Functional\System\SitesDirectoryHardeningTest::makeWritable()

Makes the given path and settings file writable.

Parameters

string $site_path: The sites directory path, such as 'sites/default'.

2 calls to SitesDirectoryHardeningTest::makeWritable()
SitesDirectoryHardeningTest::testSitesDirectoryHardening in core/modules/system/tests/src/Functional/System/SitesDirectoryHardeningTest.php
Tests the default behavior to restrict directory permissions is enforced.
SitesDirectoryHardeningTest::testSitesDirectoryHardeningConfig in core/modules/system/tests/src/Functional/System/SitesDirectoryHardeningTest.php
Tests writable files remain writable when directory hardening is disabled.

File

core/modules/system/tests/src/Functional/System/SitesDirectoryHardeningTest.php, line 105

Class

SitesDirectoryHardeningTest
Tests Drupal permissions hardening of /sites subdirectories.

Namespace

Drupal\Tests\system\Functional\System

Code

protected function makeWritable($site_path) {
  chmod($site_path, 0755);
  chmod($this
    ->settingsFile($site_path), 0644);
}