mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 17:56:09 +01:00
57 lines
1.9 KiB
PHP
57 lines
1.9 KiB
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Psl\Tests\Filesystem;
|
||
|
|
||
|
use Psl\Filesystem;
|
||
|
use Psl\Str;
|
||
|
|
||
|
final class PermissionsTest extends AbstractFilesystemTest
|
||
|
{
|
||
|
protected string $function = 'permissions';
|
||
|
|
||
|
public function testChangePermissions(): void
|
||
|
{
|
||
|
$filename = Str\join([$this->directory, 'foo.txt'], Filesystem\SEPARATOR);
|
||
|
|
||
|
Filesystem\create_file($filename);
|
||
|
|
||
|
$permissions = Filesystem\get_permissions($filename) & 0777;
|
||
|
|
||
|
try {
|
||
|
Filesystem\change_permissions($filename, 0444);
|
||
|
|
||
|
static::assertTrue(Filesystem\is_readable($filename));
|
||
|
static::assertFalse(Filesystem\is_writable($filename));
|
||
|
static::assertFalse(Filesystem\is_executable($filename));
|
||
|
|
||
|
Filesystem\change_permissions($filename, 0222);
|
||
|
|
||
|
static::assertTrue(Filesystem\is_writable($filename));
|
||
|
static::assertFalse(Filesystem\is_readable($filename));
|
||
|
static::assertFalse(Filesystem\is_executable($filename));
|
||
|
|
||
|
Filesystem\change_permissions($filename, 0111);
|
||
|
|
||
|
static::assertTrue(Filesystem\is_executable($filename));
|
||
|
static::assertFalse(Filesystem\is_writable($filename));
|
||
|
static::assertFalse(Filesystem\is_readable($filename));
|
||
|
|
||
|
Filesystem\change_permissions($filename, 0666);
|
||
|
|
||
|
static::assertTrue(Filesystem\is_writable($filename));
|
||
|
static::assertTrue(Filesystem\is_readable($filename));
|
||
|
static::assertFalse(Filesystem\is_executable($filename));
|
||
|
|
||
|
Filesystem\change_permissions($filename, 0777);
|
||
|
|
||
|
static::assertTrue(Filesystem\is_writable($filename));
|
||
|
static::assertTrue(Filesystem\is_readable($filename));
|
||
|
static::assertTrue(Filesystem\is_executable($filename));
|
||
|
} finally {
|
||
|
Filesystem\change_permissions($filename, $permissions);
|
||
|
}
|
||
|
}
|
||
|
}
|