‪TYPO3CMS  9.5
DateTimeValidatorTest.php
Go to the documentation of this file.
1 <?php
2 declare(strict_types = 1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
20 
24 class ‪DateTimeValidatorTest extends UnitTestCase
25 {
30  public function ‪acceptsDateTimeValues($value)
31  {
33  $result = ‪$validator->validate($value);
34 
35  $this->assertFalse($result->hasErrors());
36  }
37 
41  public function ‪dateTimeValues(): array
42  {
43  return [
44  \DateTime::class => [
45  new \DateTime(),
46  ],
47  'Extended ' . \DateTime::class => [
48  new class extends \DateTime {
49  },
50  ],
51  \DateTimeImmutable::class => [
52  new \DateTimeImmutable(),
53  ],
54  'Extended ' . \DateTimeImmutable::class => [
55  new class extends \DateTimeImmutable {
56  },
57  ],
58  ];
59  }
60 
64  public function ‪addsErrorForInvalidValue()
65  {
66  ‪$validator = $this->getMockBuilder(DateTimeValidator::class)
67  ->setMethods(['translateErrorMessage'])
68  ->getMock();
69  $result = ‪$validator->validate(false);
70 
71  $this->assertTrue($result->hasErrors());
72  }
73 }
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\DateTimeValidatorTest\addsErrorForInvalidValue
‪addsErrorForInvalidValue()
Definition: DateTimeValidatorTest.php:64
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\DateTimeValidatorTest\acceptsDateTimeValues
‪acceptsDateTimeValues($value)
Definition: DateTimeValidatorTest.php:30
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\DateTimeValidatorTest\dateTimeValues
‪array dateTimeValues()
Definition: DateTimeValidatorTest.php:41
‪$validator
‪if(isset($args['d'])) $validator
Definition: validateRstFiles.php:218
‪TYPO3\CMS\Extbase\Validation\Validator\DateTimeValidator
Definition: DateTimeValidator.php:21
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\DateTimeValidatorTest
Definition: DateTimeValidatorTest.php:25
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator
Definition: AbstractCompositeValidatorTest.php:2