function FileSystemTest::testChmodDir

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/File/FileSystemTest.php \Drupal\Tests\Core\File\FileSystemTest::testChmodDir()
  2. 10 core/tests/Drupal/Tests/Core/File/FileSystemTest.php \Drupal\Tests\Core\File\FileSystemTest::testChmodDir()
  3. 11.x core/tests/Drupal/Tests/Core/File/FileSystemTest.php \Drupal\Tests\Core\File\FileSystemTest::testChmodDir()

@covers ::chmod

File

core/tests/Drupal/Tests/Core/File/FileSystemTest.php, line 67

Class

FileSystemTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21File%21FileSystem.php/class/FileSystem/9" title="Provides helpers to operate on files and stream wrappers." class="local">\Drupal\Core\File\FileSystem</a>

Namespace

Drupal\Tests\Core\File

Code

public function testChmodDir() {
    vfsStream::setup('dir');
    vfsStream::create([
        'nested_dir' => [],
    ]);
    $uri = 'vfs://dir/nested_dir';
    $this->assertTrue($this->fileSystem
        ->chmod($uri));
    $this->assertFilePermissions(FileSystem::CHMOD_DIRECTORY, $uri);
    $this->assertTrue($this->fileSystem
        ->chmod($uri, 0444));
    $this->assertFilePermissions(0444, $uri);
}

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