Files
szkoleniauryzaj.pl/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/tests/FileExistsTest.php
2024-11-10 21:08:49 +01:00

41 lines
1.1 KiB
PHP

<?php
namespace FileUtil\Tests;
use PHPUnit\Framework\TestCase;
use FileUtil\FileExists;
use org\bovigo\vfs\vfsStream;
class FileExistsTest extends TestCase
{
public function testFileExists()
{
$this->assertTrue(FileExists::fileExists(__DIR__ . '/FileExistsTest.php'));
$this->assertFalse(FileExists::fileExists(__DIR__ . '/not-here.php'));
}
public function testFileExistsTryHarder()
{
if (function_exists('exec')) {
$this->assertTrue(FileExists::fileExistsTryHarder(__DIR__ . '/FileExistsTest.php'));
$this->assertFalse(FileExists::fileExistsTryHarder(__DIR__ . '/not-here.php'));
}
}
/*
public function testFileExistsNoReadPermission()
{
$root = vfsStream::setup();
$file = vfsStream::newFile('hello.txt')
->withContent('hello')
->at($root)
->chmod(0000);
// fopen should now fail...
//$this->expectException(\Exception::class);
$this->assertTrue(FileExists::fileExists($file->url()));
}
*/
}