. */ declare(strict_types=1); namespace Tests\Unit\Rules; use FireflyIII\Rules\IsDateOrTime; use Log; use Tests\TestCase; /** * Class IsDateOrTimeTest * @SuppressWarnings(PHPMD.CouplingBetweenObjects) * @SuppressWarnings(PHPMD.ExcessiveMethodLength) * @SuppressWarnings(PHPMD.TooManyPublicMethods) */ class IsDateOrTimeTest extends TestCase { /** * */ public function setUp(): void { parent::setUp(); Log::info(sprintf('Now in %s.', get_class($this))); } /** * @covers \FireflyIII\Rules\IsDateOrTime */ public function testFalse(): void { $attribute = 'not-important'; $values = ['20xx-01-x','1234567890', '2xx0101', '', false]; /** @var mixed $value */ foreach ($values as $value) { $engine = new IsDateOrTime(); $this->assertFalse($engine->passes($attribute, $value), sprintf('%s', var_export($value, true))); } } /** * @covers \FireflyIII\Rules\IsDateOrTime */ public function testTrue(): void { $attribute = 'not-important'; $values = ['2019-01-01', '20190101', '2019-01-01 12:12:12', '12:12:12']; /** @var mixed $value */ foreach ($values as $value) { $engine = new IsDateOrTime(); $this->assertTrue($engine->passes($attribute, $value)); } } }