Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / validator / Tests / Constraints / EqualToValidatorTest.php
1 <?php
2
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Symfony\Component\Validator\Tests\Constraints;
13
14 use Symfony\Component\Validator\Constraints\EqualTo;
15 use Symfony\Component\Validator\Constraints\EqualToValidator;
16
17 /**
18  * @author Daniel Holmes <daniel@danielholmes.org>
19  */
20 class EqualToValidatorTest extends AbstractComparisonValidatorTestCase
21 {
22     protected function createValidator()
23     {
24         return new EqualToValidator();
25     }
26
27     protected function createConstraint(array $options = null)
28     {
29         return new EqualTo($options);
30     }
31
32     protected function getErrorCode()
33     {
34         return EqualTo::NOT_EQUAL_ERROR;
35     }
36
37     /**
38      * {@inheritdoc}
39      */
40     public function provideValidComparisons()
41     {
42         return array(
43             array(3, 3),
44             array(3, '3'),
45             array('a', 'a'),
46             array(new \DateTime('2000-01-01'), new \DateTime('2000-01-01')),
47             array(new \DateTime('2000-01-01'), '2000-01-01'),
48             array(new \DateTime('2000-01-01 UTC'), '2000-01-01 UTC'),
49             array(new ComparisonTest_Class(5), new ComparisonTest_Class(5)),
50             array(null, 1),
51         );
52     }
53
54     /**
55      * {@inheritdoc}
56      */
57     public function provideInvalidComparisons()
58     {
59         return array(
60             array(1, '1', 2, '2', 'integer'),
61             array('22', '"22"', '333', '"333"', 'string'),
62             array(new \DateTime('2001-01-01'), 'Jan 1, 2001, 12:00 AM', new \DateTime('2000-01-01'), 'Jan 1, 2000, 12:00 AM', 'DateTime'),
63             array(new \DateTime('2001-01-01'), 'Jan 1, 2001, 12:00 AM', '2000-01-01', 'Jan 1, 2000, 12:00 AM', 'DateTime'),
64             array(new \DateTime('2001-01-01 UTC'), 'Jan 1, 2001, 12:00 AM', '2000-01-01 UTC', 'Jan 1, 2000, 12:00 AM', 'DateTime'),
65             array(new ComparisonTest_Class(4), '4', new ComparisonTest_Class(5), '5', __NAMESPACE__.'\ComparisonTest_Class'),
66         );
67     }
68 }