8b1adef1806c1adb19fbfcee8c70462d5f0e9d5f
[yaffs-website] / vendor / symfony / validator / Tests / Constraints / LessThanOrEqualValidatorTest.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\LessThanOrEqual;
15 use Symfony\Component\Validator\Constraints\LessThanOrEqualValidator;
16 use Symfony\Component\Validator\Validation;
17
18 /**
19  * @author Daniel Holmes <daniel@danielholmes.org>
20  */
21 class LessThanOrEqualValidatorTest extends AbstractComparisonValidatorTestCase
22 {
23     protected function getApiVersion()
24     {
25         return Validation::API_VERSION_2_5;
26     }
27
28     protected function createValidator()
29     {
30         return new LessThanOrEqualValidator();
31     }
32
33     protected function createConstraint(array $options)
34     {
35         return new LessThanOrEqual($options);
36     }
37
38     protected function getErrorCode()
39     {
40         return LessThanOrEqual::TOO_HIGH_ERROR;
41     }
42
43     /**
44      * {@inheritdoc}
45      */
46     public function provideValidComparisons()
47     {
48         return array(
49             array(1, 2),
50             array(1, 1),
51             array(new \DateTime('2000-01-01'), new \DateTime('2000-01-01')),
52             array(new \DateTime('2000-01-01'), new \DateTime('2020-01-01')),
53             array(new \DateTime('2000-01-01'), '2000-01-01'),
54             array(new \DateTime('2000-01-01'), '2020-01-01'),
55             array(new \DateTime('2000-01-01 UTC'), '2000-01-01 UTC'),
56             array(new \DateTime('2000-01-01 UTC'), '2020-01-01 UTC'),
57             array(new ComparisonTest_Class(4), new ComparisonTest_Class(5)),
58             array(new ComparisonTest_Class(5), new ComparisonTest_Class(5)),
59             array('a', 'a'),
60             array('a', 'z'),
61             array(null, 1),
62         );
63     }
64
65     /**
66      * {@inheritdoc}
67      */
68     public function provideInvalidComparisons()
69     {
70         return array(
71             array(2, '2', 1, '1', 'integer'),
72             array(new \DateTime('2010-01-01'), 'Jan 1, 2010, 12:00 AM', new \DateTime('2000-01-01'), 'Jan 1, 2000, 12:00 AM', 'DateTime'),
73             array(new \DateTime('2010-01-01'), 'Jan 1, 2010, 12:00 AM', '2000-01-01', 'Jan 1, 2000, 12:00 AM', 'DateTime'),
74             array(new \DateTime('2010-01-01 UTC'), 'Jan 1, 2010, 12:00 AM', '2000-01-01 UTC', 'Jan 1, 2000, 12:00 AM', 'DateTime'),
75             array(new ComparisonTest_Class(5), '5', new ComparisonTest_Class(4), '4', __NAMESPACE__.'\ComparisonTest_Class'),
76             array('c', '"c"', 'b', '"b"', 'string'),
77         );
78     }
79 }