TYPO3 CMS  TYPO3_8-7
DisjunctionValidatorTest.php
Go to the documentation of this file.
1 <?php
3 
4 /* *
5  * This script belongs to the Extbase framework. *
6  * *
7  * It is free software; you can redistribute it and/or modify it under *
8  * the terms of the GNU Lesser General Public License as published by the *
9  * Free Software Foundation, either version 3 of the License, or (at your *
10  * option) any later version. *
11  * *
12  * This script is distributed in the hope that it will be useful, but *
13  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- *
14  * TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser *
15  * General Public License for more details. *
16  * *
17  * You should have received a copy of the GNU Lesser General Public *
18  * License along with the script. *
19  * If not, see http://www.gnu.org/licenses/lgpl.html *
20  * *
21  * The TYPO3 project - inspiring people to share! *
22  * */
23 
27 class DisjunctionValidatorTest extends \TYPO3\TestingFramework\Core\Unit\UnitTestCase
28 {
33  {
34  $this->markTestSkipped('Needs a bugfix of Flow first.');
35  $validatorDisjunction = new \TYPO3\CMS\Extbase\Validation\Validator\DisjunctionValidator([]);
36  $validatorObject = $this->getMockBuilder(\TYPO3\CMS\Extbase\Validation\Validator\ValidatorInterface::class)
37  ->setMethods(['validate', 'getOptions'])
38  ->getMock();
39  $validatorObject->expects($this->once())->method('validate')->will($this->returnValue(new \TYPO3\CMS\Extbase\Error\Result()));
40  $errors = new \TYPO3\CMS\Extbase\Error\Result();
41  $errors->addError(new \TYPO3\CMS\Extbase\Error\Error('Error', 123));
42  $secondValidatorObject = $this->getMockBuilder(\TYPO3\CMS\Extbase\Validation\Validator\ValidatorInterface::class)
43  ->setMethods(['validate', 'getOptions'])
44  ->getMock();
45  $secondValidatorObject->expects($this->exactly(1))->method('validate')->will($this->returnValue($errors));
46  $validatorDisjunction->addValidator($validatorObject);
47  $validatorDisjunction->addValidator($secondValidatorObject);
48  $validatorDisjunction->validate('some subject');
49  }
50 
55  {
56  $validatorDisjunction = new \TYPO3\CMS\Extbase\Validation\Validator\DisjunctionValidator([]);
57  $validatorObject = $this->getMockBuilder(\TYPO3\CMS\Extbase\Validation\Validator\ValidatorInterface::class)
58  ->setMethods(['validate', 'getOptions'])
59  ->getMock();
60  $validatorObject->expects($this->any())->method('validate')->will($this->returnValue(new \TYPO3\CMS\Extbase\Error\Result()));
61  $errors = new \TYPO3\CMS\Extbase\Error\Result();
62  $errors->addError(new \TYPO3\CMS\Extbase\Error\Error('Error', 123));
63  $secondValidatorObject = $this->getMockBuilder(\TYPO3\CMS\Extbase\Validation\Validator\ValidatorInterface::class)
64  ->setMethods(['validate', 'getOptions'])
65  ->getMock();
66  $secondValidatorObject->expects($this->any())->method('validate')->will($this->returnValue($errors));
67  $validatorDisjunction->addValidator($validatorObject);
68  $validatorDisjunction->addValidator($secondValidatorObject);
69  $this->assertFalse($validatorDisjunction->validate('some subject')->hasErrors());
70  }
71 
76  {
77  $validatorDisjunction = new \TYPO3\CMS\Extbase\Validation\Validator\DisjunctionValidator([]);
78  $error1 = new \TYPO3\CMS\Extbase\Error\Error('Error', 123);
79  $error2 = new \TYPO3\CMS\Extbase\Error\Error('Error2', 123);
80  $errors1 = new \TYPO3\CMS\Extbase\Error\Result();
81  $errors1->addError($error1);
82  $validatorObject = $this->getMockBuilder(\TYPO3\CMS\Extbase\Validation\Validator\ValidatorInterface::class)
83  ->setMethods(['validate', 'getOptions'])
84  ->getMock();
85  $validatorObject->expects($this->any())->method('validate')->will($this->returnValue($errors1));
86  $errors2 = new \TYPO3\CMS\Extbase\Error\Result();
87  $errors2->addError($error2);
88  $secondValidatorObject = $this->getMockBuilder(\TYPO3\CMS\Extbase\Validation\Validator\ValidatorInterface::class)
89  ->setMethods(['validate', 'getOptions'])
90  ->getMock();
91  $secondValidatorObject->expects($this->any())->method('validate')->will($this->returnValue($errors2));
92  $validatorDisjunction->addValidator($validatorObject);
93  $validatorDisjunction->addValidator($secondValidatorObject);
94  $this->assertEquals([$error1, $error2], $validatorDisjunction->validate('some subject')->getErrors());
95  }
96 }