‪TYPO3CMS  10.4
DateTimeValidatorTest.php
Go to the documentation of this file.
1 <?php
2 
3 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 
21 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
22 
26 class ‪DateTimeValidatorTest extends UnitTestCase
27 {
32  public function ‪acceptsDateTimeValues($value)
33  {
35  $result = ‪$validator->validate($value);
36 
37  self::assertFalse($result->hasErrors());
38  }
39 
43  public function ‪dateTimeValues(): array
44  {
45  return [
46  \DateTime::class => [
47  new \DateTime(),
48  ],
49  'Extended ' . \DateTime::class => [
50  new class() extends \DateTime {
51  },
52  ],
53  \DateTimeImmutable::class => [
54  new \DateTimeImmutable(),
55  ],
56  'Extended ' . \DateTimeImmutable::class => [
57  new class() extends \DateTimeImmutable {
58  },
59  ],
60  ];
61  }
62 
66  public function ‪addsErrorForInvalidValue()
67  {
68  ‪$validator = $this->getMockBuilder(DateTimeValidator::class)
69  ->setMethods(['translateErrorMessage'])
70  ->getMock();
71  $result = ‪$validator->validate(false);
72 
73  self::assertTrue($result->hasErrors());
74  }
75 }
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\DateTimeValidatorTest\addsErrorForInvalidValue
‪addsErrorForInvalidValue()
Definition: DateTimeValidatorTest.php:66
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\DateTimeValidatorTest\acceptsDateTimeValues
‪acceptsDateTimeValues($value)
Definition: DateTimeValidatorTest.php:32
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\DateTimeValidatorTest\dateTimeValues
‪array dateTimeValues()
Definition: DateTimeValidatorTest.php:43
‪$validator
‪if(isset($args['d'])) $validator
Definition: validateRstFiles.php:218
‪TYPO3\CMS\Extbase\Validation\Validator\DateTimeValidator
Definition: DateTimeValidator.php:22
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator\DateTimeValidatorTest
Definition: DateTimeValidatorTest.php:27
‪TYPO3\CMS\Extbase\Tests\Unit\Validation\Validator
Definition: AbstractCompositeValidatorTest.php:16