respect-validation/tests/unit/Rules/ExecutableTest.php

56 lines
1.3 KiB
PHP
Raw Normal View History

2014-08-28 05:34:17 +02:00
<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
2014-08-28 05:34:17 +02:00
namespace Respect\Validation\Rules;
use Respect\Validation\Test\RuleTestCase;
use SplFileInfo;
use SplFileObject;
2014-08-28 05:34:17 +02:00
/**
* @group rule
*
2017-02-04 14:01:14 +01:00
* @covers \Respect\Validation\Rules\Executable
*
* @author Gabriel Caruso <carusogabriel34@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
* @author Royall Spence <royall@royall.us>
* @author William Espindola <oi@williamespindola.com.br>
2014-08-28 05:34:17 +02:00
*/
final class ExecutableTest extends RuleTestCase
2014-08-28 05:34:17 +02:00
{
/**
* {@inheritDoc}
*/
public static function providerForValidInput(): array
2014-08-28 05:34:17 +02:00
{
$rule = new Executable();
return [
[$rule, 'tests/fixtures/executable'],
[$rule, new SplFileInfo('tests/fixtures/executable')],
[$rule, new SplFileObject('tests/fixtures/executable')],
];
2014-08-28 05:34:17 +02:00
}
/**
* {@inheritDoc}
*/
public static function providerForInvalidInput(): array
2014-08-28 05:34:17 +02:00
{
$rule = new Executable();
return [
[$rule, 'tests/fixtures/valid-image.gif'],
[$rule, new SplFileInfo('tests/fixtures/valid-image.jpg')],
[$rule, new SplFileObject('tests/fixtures/valid-image.png')],
];
2014-08-28 05:34:17 +02:00
}
}