first commit
This commit is contained in:
40
wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/tests/FileExistsTest.php
vendored
Normal file
40
wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/tests/FileExistsTest.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?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()));
|
||||
}
|
||||
*/
|
||||
}
|
||||
Reference in New Issue
Block a user