72 lines
1.6 KiB
PHP
72 lines
1.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Respect/Validation.
|
|
*
|
|
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
|
|
*
|
|
* For the full copyright and license information, please view the "LICENSE.md"
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Respect\Validation\Rules;
|
|
|
|
use Respect\Validation\TestCase;
|
|
use SplFileInfo;
|
|
|
|
$GLOBALS['is_file'] = null;
|
|
|
|
function is_file($file)
|
|
{
|
|
$return = \is_file($file); // Running the real function
|
|
if (null !== $GLOBALS['is_file']) {
|
|
$return = $GLOBALS['is_file'];
|
|
$GLOBALS['is_file'] = null;
|
|
}
|
|
|
|
return $return;
|
|
}
|
|
|
|
/**
|
|
* @group rule
|
|
* @covers Respect\Validation\Rules\File
|
|
* @covers Respect\Validation\Exceptions\FileException
|
|
*/
|
|
class FileTest extends TestCase
|
|
{
|
|
/**
|
|
* @covers Respect\Validation\Rules\File::validate
|
|
*/
|
|
public function testValidFileShouldReturnTrue()
|
|
{
|
|
$GLOBALS['is_file'] = true;
|
|
|
|
$rule = new File();
|
|
$input = '/path/of/a/valid/file.txt';
|
|
$this->assertTrue($rule->validate($input));
|
|
}
|
|
|
|
/**
|
|
* @covers Respect\Validation\Rules\File::validate
|
|
*/
|
|
public function testInvalidFileShouldReturnFalse()
|
|
{
|
|
$GLOBALS['is_file'] = false;
|
|
|
|
$rule = new File();
|
|
$input = '/path/of/an/invalid/file.txt';
|
|
$this->assertFalse($rule->validate($input));
|
|
}
|
|
|
|
/**
|
|
* @covers Respect\Validation\Rules\File::validate
|
|
*/
|
|
public function testShouldValidateObjects()
|
|
{
|
|
$rule = new File();
|
|
$object = new SplFileInfo('tests/fixtures/valid-image.png');
|
|
|
|
$this->assertTrue($rule->validate($object));
|
|
}
|
|
}
|