2 namespace TYPO3\CMS\Form\Tests\Unit\Validation
;
3 /***************************************************************
6 * (c) 2012 Andreas Lappe <a.lappe@kuehlhaus.com>, kuehlhaus AG
10 * This script is part of the TYPO3 project. The TYPO3 project is
11 * free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * The GNU General Public License can be found at
17 * http://www.gnu.org/copyleft/gpl.html.
19 * This script is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * This copyright notice MUST APPEAR in all copies of the script!
25 ***************************************************************/
28 * Test case for class \TYPO3\CMS\Form\Validation\InArrayValidator.
30 * @author Andreas Lappe <a.lappe@kuehlhaus.com>
34 class InArrayValidatorTest
extends \TYPO3\CMS\Extbase\Tests\Unit\BaseTestCase
{
36 * @var \TYPO3\CMS\Form\Tests\Unit\Validation\Helper
41 * @var \TYPO3\CMS\Form\Validation\InArrayValidator
45 public function setUp() {
46 $this->helper
= new \TYPO3\CMS\Form\Tests\Unit\Validation\
Helper();
47 $this->fixture
= new \TYPO3\CMS\Form\Validation\
InArrayValidator(array('array.' => array(), 'strict' => FALSE));
50 public function tearDown() {
51 unset($this->helper
, $this->fixture
);
54 public function validArrayProvider() {
56 '12 in (12, 13)' => array(array(array(12, 13), 12))
60 public function invalidArrayProvider() {
62 '12 in (11, 13)' => array(array(array(11, 13), 12)),
68 * @dataProvider validArrayProvider
70 public function isValidForValidInputReturnsTrue($input) {
71 $this->fixture
->setFieldName('myfield');
72 $this->fixture
->setArray($input[0]);
73 $requestHandlerMock = $this->helper
->getRequestHandler(array(
74 'myfield' => $input[1]
76 $this->fixture
->injectRequestHandler($requestHandlerMock);
79 $this->fixture
->isValid()
85 * @dataProvider invalidArrayProvider
87 public function isValidForInvalidInputReturnsFalse($input) {
88 $this->fixture
->setFieldName('myfield');
89 $this->fixture
->setArray($input[0]);
90 $requestHandlerMock = $this->helper
->getRequestHandler(array(
91 'myfield' => $input[1]
93 $this->fixture
->injectRequestHandler($requestHandlerMock);
96 $this->fixture
->isValid()
102 * @dataProvider validArrayProvider
104 public function isValidForValidInputWithStrictComparisonReturnsTrue($input) {
105 $this->fixture
->setFieldName('myfield');
106 $this->fixture
->setArray($input[0]);
107 $this->fixture
->setStrict(TRUE);
108 $requestHandlerMock = $this->helper
->getRequestHandler(array(
109 'myfield' => $input[1]
111 $this->fixture
->injectRequestHandler($requestHandlerMock);
114 $this->fixture
->isValid()
120 * @dataProvider invalidArrayProvider
122 public function isValidForInvalidInputWithStrictComparisonReturnsFalse($input) {
123 $this->fixture
->setFieldName('myfield');
124 $this->fixture
->setArray($input[0]);
125 $this->fixture
->setStrict(TRUE);
126 $requestHandlerMock = $this->helper
->getRequestHandler(array(
127 'myfield' => $input[1]
129 $this->fixture
->injectRequestHandler($requestHandlerMock);
132 $this->fixture
->isValid()