41899b2ef10da7781b2e0523a924c926e9b19507
[yaffs-website] / vendor / symfony / validator / Tests / Constraints / GreaterThanOrEqualValidatorTest.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\GreaterThanOrEqual;
15 use Symfony\Component\Validator\Constraints\GreaterThanOrEqualValidator;
16 use Symfony\Component\Validator\Validation;
17
18 /**
19  * @author Daniel Holmes <daniel@danielholmes.org>
20  */
21 class GreaterThanOrEqualValidatorTest 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 GreaterThanOrEqualValidator();
31     }
32
33     protected function createConstraint(array $options)
34     {
35         return new GreaterThanOrEqual($options);
36     }
37
38     protected function getErrorCode()
39     {
40         return GreaterThanOrEqual::TOO_LOW_ERROR;
41     }
42
43     /**
44      * {@inheritdoc}
45      */
46     public function provideValidComparisons()
47     {
48         return array(
49             array(3, 2),
50             array(1, 1),
51             array(new \DateTime('2010/01/01'), new \DateTime('2000/01/01')),
52             array(new \DateTime('2000/01/01'), new \DateTime('2000/01/01')),
53             array(new \DateTime('2010/01/01'), '2000/01/01'),
54             array(new \DateTime('2000/01/01'), '2000/01/01'),
55             array(new \DateTime('2010/01/01 UTC'), '2000/01/01 UTC'),
56             array(new \DateTime('2000/01/01 UTC'), '2000/01/01 UTC'),
57             array('a', 'a'),
58             array('z', 'a'),
59             array(null, 1),
60         );
61     }
62
63     /**
64      * {@inheritdoc}
65      */
66     public function provideInvalidComparisons()
67     {
68         return array(
69             array(1, '1', 2, '2', 'integer'),
70             array(new \DateTime('2000/01/01'), 'Jan 1, 2000, 12:00 AM', new \DateTime('2005/01/01'), 'Jan 1, 2005, 12:00 AM', 'DateTime'),
71             array(new \DateTime('2000/01/01'), 'Jan 1, 2000, 12:00 AM', '2005/01/01', 'Jan 1, 2005, 12:00 AM', 'DateTime'),
72             array(new \DateTime('2000/01/01 UTC'), 'Jan 1, 2000, 12:00 AM', '2005/01/01 UTC', 'Jan 1, 2005, 12:00 AM', 'DateTime'),
73             array('b', '"b"', 'c', '"c"', 'string'),
74         );
75     }
76 }