respect-validation/tests/unit/Rules/TimeTest.php
Henrique Moody ef8a8f4b27
Turn LICENSE file into plain/text
There is no need for that file to be a Markdown, and it can be a plain
text file.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2019-05-23 16:21:34 +02:00

97 lines
2.1 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 file
* that was distributed with this source code.
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
use DateTime;
use DateTimeImmutable;
use Respect\Validation\Exceptions\ComponentException;
use Respect\Validation\Test\RuleTestCase;
/**
* @group rule
*
* @covers \Respect\Validation\Rules\Time
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class TimeTest extends RuleTestCase
{
/**
* {@inheritDoc}
*/
public function providerForValidInput(): array
{
return [
[new Time(), '00:00:00'],
[new Time(), '23:20:59'],
[new Time('H:i'), '23:59'],
[new Time('g:i A'), '8:13 AM'],
[new Time('His'), 232059],
[new Time('H:i:s.u'), '08:16:01.000000'],
[new Time('ga'), '3am'],
];
}
/**
* {@inheritDoc}
*/
public function providerForInvalidInput(): array
{
return [
[new Time(), '00:00:60'],
[new Time(), '00:60:00'],
[new Time(), '24:00:00'],
[new Time(), '00:00'],
[new Time(), new DateTime()],
[new Time(), new DateTimeImmutable()],
[new Time(), ''],
];
}
/**
* @return mixed[][]
*/
public function invalidFormatsProvider(): array
{
return [
['Y-m-d H:i:s'],
['M g:i A'],
];
}
/**
* @test
*
* @dataProvider invalidFormatsProvider
*/
public function shouldThrowAnExceptionWhenFormatIsNotValid(string $format): void
{
$this->expectException(ComponentException::class);
new Time($format);
}
/**
* @test
*/
public function shouldPassFormatToParameterToException(): void
{
$format = 'g:i A';
$equals = new Time($format);
$exception = $equals->reportError('input');
self::assertSame($format, $exception->getParam('format'));
}
}