respect-validation/tests/unit/Rules/ExecutableTest.php
2017-02-04 14:01:14 +01:00

62 lines
1.7 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;
$GLOBALS['is_executable'] = null;
function is_executable($executable)
{
$return = \is_executable($executable); // Running the real function
if (null !== $GLOBALS['is_executable']) {
$return = $GLOBALS['is_executable'];
$GLOBALS['is_executable'] = null;
}
return $return;
}
/**
* @group rule
* @covers \Respect\Validation\Rules\Executable
* @covers \Respect\Validation\Exceptions\ExecutableException
*/
class ExecutableTest extends \PHPUnit_Framework_TestCase
{
public function testValidExecutableFileShouldReturnTrue()
{
$GLOBALS['is_executable'] = true;
$rule = new Executable();
$input = '/path/of/a/valid/executable/file.txt';
$this->assertTrue($rule->validate($input));
}
public function testInvalidExecutableFileShouldReturnFalse()
{
$GLOBALS['is_executable'] = false;
$rule = new Executable();
$input = '/path/of/an/invalid/executable/file.txt';
$this->assertFalse($rule->validate($input));
}
public function testShouldValidateObjects()
{
$rule = new Executable();
$object = $this->createMock('SplFileInfo', ['isExecutable'], ['somefile.txt']);
$object->expects($this->once())
->method('isExecutable')
->will($this->returnValue(true));
$this->assertTrue($rule->validate($object));
}
}