FileSecurityTest.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/Tests/Component/FileSecurity/FileSecurityTest.php
  2. 8.9.x core/tests/Drupal/Tests/Component/FileSecurity/FileSecurityTest.php
  3. 10 core/tests/Drupal/Tests/Component/FileSecurity/FileSecurityTest.php

Namespace

Drupal\Tests\Component\FileSecurity

File

core/tests/Drupal/Tests/Component/FileSecurity/FileSecurityTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Component\FileSecurity;

use Drupal\Component\FileSecurity\FileSecurity;
use org\bovigo\vfs\vfsStream;
use PHPUnit\Framework\TestCase;

/**
 * Tests the file security component.
 *
 * @coversDefaultClass \Drupal\Component\FileSecurity\FileSecurity
 * @group FileSecurity
 */
class FileSecurityTest extends TestCase {
    
    /**
     * @covers ::writeHtaccess
     */
    public function testWriteHtaccessPrivate() : void {
        vfsStream::setup('root');
        FileSecurity::writeHtaccess(vfsStream::url('root'));
        $htaccess_file = vfsStream::url('root') . '/.htaccess';
        $this->assertFileExists($htaccess_file);
        $this->assertEquals('0444', substr(sprintf('%o', fileperms($htaccess_file)), -4));
        $htaccess_contents = file_get_contents($htaccess_file);
        $this->assertStringContainsString("Require all denied", $htaccess_contents);
    }
    
    /**
     * @covers ::writeHtaccess
     */
    public function testWriteHtaccessPublic() : void {
        vfsStream::setup('root');
        $this->assertTrue(FileSecurity::writeHtaccess(vfsStream::url('root'), FALSE));
        $htaccess_file = vfsStream::url('root') . '/.htaccess';
        $this->assertFileExists($htaccess_file);
        $this->assertEquals('0444', substr(sprintf('%o', fileperms($htaccess_file)), -4));
        $htaccess_contents = file_get_contents($htaccess_file);
        $this->assertStringNotContainsString("Require all denied", $htaccess_contents);
    }
    
    /**
     * @covers ::writeHtaccess
     */
    public function testWriteHtaccessForceOverwrite() : void {
        vfsStream::setup('root');
        $htaccess_file = vfsStream::url('root') . '/.htaccess';
        file_put_contents($htaccess_file, "foo");
        $this->assertTrue(FileSecurity::writeHtaccess(vfsStream::url('root'), TRUE, TRUE));
        $htaccess_contents = file_get_contents($htaccess_file);
        $this->assertStringContainsString("Require all denied", $htaccess_contents);
        $this->assertStringNotContainsString("foo", $htaccess_contents);
    }
    
    /**
     * @covers ::writeHtaccess
     */
    public function testWriteHtaccessFailure() : void {
        vfsStream::setup('root');
        $this->assertFalse(FileSecurity::writeHtaccess(vfsStream::url('root') . '/foo'));
    }

}

Classes

Title Deprecated Summary
FileSecurityTest Tests the file security component.

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