tao-test/app/vendor/respect/validation/tests/unit/Rules/WritableTest.php

72 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;
use Respect\Validation\TestCase;
use SplFileInfo;
$GLOBALS['is_writable'] = null;
function is_writable($writable)
{
$return = \is_writable($writable); // Running the real function
if (null !== $GLOBALS['is_writable']) {
$return = $GLOBALS['is_writable'];
$GLOBALS['is_writable'] = null;
}
return $return;
}
/**
* @group rule
* @covers Respect\Validation\Rules\Writable
* @covers Respect\Validation\Exceptions\WritableException
*/
class WritableTest extends TestCase
{
/**
* @covers Respect\Validation\Rules\Writable::validate
*/
public function testValidWritableFileShouldReturnTrue()
{
$GLOBALS['is_writable'] = true;
$rule = new Writable();
$input = '/path/of/a/valid/writable/file.txt';
$this->assertTrue($rule->validate($input));
}
/**
* @covers Respect\Validation\Rules\Writable::validate
*/
public function testInvalidWritableFileShouldReturnFalse()
{
$GLOBALS['is_writable'] = false;
$rule = new Writable();
$input = '/path/of/an/invalid/writable/file.txt';
$this->assertFalse($rule->validate($input));
}
/**
* @covers Respect\Validation\Rules\Writable::validate
*/
public function testShouldValidateObjects()
{
$rule = new Writable();
$object = new SplFileInfo('tests/fixtures/valid-image.jpg');
$this->assertTrue($rule->validate($object));
}
}