respect-validation/tests/unit/Rules/FileTest.php
Henrique Moody e8fcdb661f
Allow creating paths from fixture files
We had a method that returned the full path of the fixture directory,
and we frequently would concatenate that path with a file we needed. I
changed it to include the file's path inside the fixture directory. That
way, we avoid repeating the same patter over and over.

I made the method static because we use it in data providers, which need
to be static.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2023-04-03 16:28:37 +02:00

63 lines
1.4 KiB
PHP

<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
use Respect\Validation\Test\RuleTestCase;
use SplFileInfo;
use SplFileObject;
use stdClass;
use const PHP_INT_MAX;
/**
* @group rule
*
* @covers \Respect\Validation\Rules\File
*
* @author Danilo Correa <danilosilva87@gmail.com>
* @author Gabriel Caruso <carusogabriel34@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class FileTest extends RuleTestCase
{
/**
* {@inheritDoc}
*/
public function providerForValidInput(): array
{
$sut = new File();
return [
'filename' => [$sut, __FILE__],
'SplFileInfo' => [$sut, new SplFileInfo(self::fixture('valid-image.png'))],
'SplFileObject' => [$sut, new SplFileObject(self::fixture('invalid-image.png'))],
];
}
/**
* {@inheritDoc}
*/
public function providerForInvalidInput(): array
{
$sut = new File();
return [
'directory' => [$sut, __DIR__],
'object' => [$sut, new stdClass()],
'array' => [$sut, []],
'invalid filename' => [$sut, 'not-a-file-at-all'],
'integer' => [$sut, PHP_INT_MAX],
'float' => [$sut, 1.222],
'boolean true' => [$sut, true],
'boolean false' => [$sut, false],
];
}
}