1
|
|
|
<?php |
2
|
|
|
/* |
3
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
4
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
5
|
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
6
|
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
7
|
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
8
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
9
|
|
|
*/ |
10
|
|
|
|
11
|
|
|
namespace MpaCustomDoctrineHydratorTest\Form\Element; |
12
|
|
|
|
13
|
|
|
use MpaCustomDoctrineHydrator\Form\Element\Time; |
14
|
|
|
use MpaCustomDoctrineHydratorTest\Util\ServiceManagerFactory; |
15
|
|
|
use PHPUnit\Framework\TestCase; |
16
|
|
|
use Zend\Filter\StringTrim; |
17
|
|
|
use Zend\Validator\Date as ZendDateValidator; |
18
|
|
|
|
19
|
|
|
class TimeTest extends TestCase |
20
|
|
|
{ |
21
|
|
|
protected $serviceManager; |
22
|
|
|
|
23
|
|
|
protected function setUp() |
24
|
|
|
{ |
25
|
|
|
\Locale::setDefault('fr-CH'); |
26
|
|
|
$this->serviceManager = ServiceManagerFactory::getServiceManager(); |
27
|
|
|
$this->serviceManager->setAllowOverride(true); |
28
|
|
|
} |
29
|
|
|
|
30
|
|
|
public function testWeCanGrabAttributesFromElement() |
31
|
|
|
{ |
32
|
|
|
$element = new Time(); |
33
|
|
|
$element->setAttribute('placeholder', 'hhmmss'); |
34
|
|
|
|
35
|
|
|
$this->assertInternalType('array', $element->getAttributes()); |
36
|
|
|
} |
37
|
|
|
|
38
|
|
|
public function testElementHasInputSpecification() |
39
|
|
|
{ |
40
|
|
|
$element = new Time(); |
41
|
|
|
$element->setName('timeelement'); |
42
|
|
|
|
43
|
|
|
$this->assertInternalType('array', $element->getInputSpecification()); |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
public function testElementHasItsOwnFilters() |
47
|
|
|
{ |
48
|
|
|
$element = new Time(); |
49
|
|
|
$element->setName('timeelement'); |
50
|
|
|
$inputSpec = $element->getInputSpecification(); |
51
|
|
|
|
52
|
|
|
$this->assertArrayHasKey('filters', $inputSpec, 'testElementHasItsOwnFilters#1'); |
53
|
|
|
$this->assertEquals( |
54
|
|
|
StringTrim::class, |
55
|
|
|
$inputSpec['filters'][0]['name'], |
56
|
|
|
'testElementHasItsOwnFilters#2' |
57
|
|
|
); |
58
|
|
|
$this->assertEquals( |
59
|
|
|
'MpaCustomDoctrineHydrator\Filter\TimeToDateTime', |
60
|
|
|
$inputSpec['filters'][1]['name'], |
61
|
|
|
'testElementHasItsOwnFilters#3' |
62
|
|
|
); |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
public function testElementHasItsParentValidators() |
66
|
|
|
{ |
67
|
|
|
$element = new Time(); |
68
|
|
|
$element->setName('timeelement'); |
69
|
|
|
$inputSpec = $element->getInputSpecification(); |
70
|
|
|
|
71
|
|
|
$this->assertArrayHasKey('validators', $inputSpec, 'testElementHasItsParentValidators#1'); |
72
|
|
|
$this->assertInstanceOf( |
73
|
|
|
ZendDateValidator::class, |
74
|
|
|
$inputSpec['validators'][0], |
75
|
|
|
'testElementHasItsParentValidators#2' |
76
|
|
|
); |
77
|
|
|
} |
78
|
|
|
|
79
|
|
|
public function testCanSetOptionsForFormat() |
80
|
|
|
{ |
81
|
|
|
$format = 'H:i:s'; |
82
|
|
|
$element = new Time(); |
83
|
|
|
$element->setName('timeelement'); |
84
|
|
|
$element->setOptions(['time_format' => $format]); |
85
|
|
|
|
86
|
|
|
$this->assertEquals($format, $element->getOption('time_format')); |
87
|
|
|
} |
88
|
|
|
} |
89
|
|
|
|