73 lines
1.8 KiB
PHP
73 lines
1.8 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;
|
||
|
|
||
|
$GLOBALS['is_uploaded_file'] = null;
|
||
|
|
||
|
function is_uploaded_file($uploaded)
|
||
|
{
|
||
|
$return = \is_uploaded_file($uploaded); // Running the real function
|
||
|
if (null !== $GLOBALS['is_uploaded_file']) {
|
||
|
$return = $GLOBALS['is_uploaded_file'];
|
||
|
$GLOBALS['is_uploaded_file'] = null;
|
||
|
}
|
||
|
|
||
|
return $return;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @group rule
|
||
|
* @covers Respect\Validation\Rules\Uploaded
|
||
|
* @covers Respect\Validation\Exceptions\UploadedException
|
||
|
*/
|
||
|
class UploadedTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @covers Respect\Validation\Rules\Uploaded::validate
|
||
|
*/
|
||
|
public function testValidUploadedFileShouldReturnTrue()
|
||
|
{
|
||
|
$GLOBALS['is_uploaded_file'] = true;
|
||
|
|
||
|
$rule = new Uploaded();
|
||
|
$input = '/path/of/a/valid/uploaded/file.txt';
|
||
|
$this->assertTrue($rule->validate($input));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers Respect\Validation\Rules\Uploaded::validate
|
||
|
*/
|
||
|
public function testInvalidUploadedFileShouldReturnFalse()
|
||
|
{
|
||
|
$GLOBALS['is_uploaded_file'] = false;
|
||
|
|
||
|
$rule = new Uploaded();
|
||
|
$input = '/path/of/an/invalid/uploaded/file.txt';
|
||
|
$this->assertFalse($rule->validate($input));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers Respect\Validation\Rules\Uploaded::validate
|
||
|
*/
|
||
|
public function testShouldValidateObjects()
|
||
|
{
|
||
|
$GLOBALS['is_uploaded_file'] = true;
|
||
|
|
||
|
$rule = new Uploaded();
|
||
|
$object = new \SplFileInfo('/path/of/an/uploaded/file');
|
||
|
|
||
|
$this->assertTrue($rule->validate($object));
|
||
|
}
|
||
|
}
|