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\EmailValidator.
30 * @author Andreas Lappe <a.lappe@kuehlhaus.com>
32 class EmailValidatorTest
extends \TYPO3\CMS\Extbase\Tests\Unit\BaseTestCase
{
34 * @var \TYPO3\CMS\Form\Tests\Unit\Validation\Helper
39 * @var \TYPO3\CMS\Form\Validation\EmailValidator
43 public function setUp() {
44 $this->helper
= new \TYPO3\CMS\Form\Tests\Unit\Validation\
Helper();
45 $this->fixture
= new \TYPO3\CMS\Form\Validation\
EmailValidator(array());
48 public function tearDown() {
49 unset($this->helper
, $this->fixture
);
52 public function validEmailProvider() {
54 'a@b.de' => array('a@b.de'),
55 'somebody@localhost' => array('somebody@localhost'),
56 'somebody@mymac.local' => array('somebody@mymac.local')
60 public function invalidEmailProvider() {
62 'myemail@' => array('myemail@'),
63 'myemail' => array('myemail'),
69 * @dataProvider validEmailProvider
71 public function isValidForValidInputReturnsTrue($input) {
72 $this->fixture
->setFieldName('myEmail');
73 $requestHandlerMock = $this->helper
->getRequestHandler(array(
76 $this->fixture
->injectRequestHandler($requestHandlerMock);
79 $this->fixture
->isValid()
85 * @dataProvider invalidEmailProvider
87 public function isValidForInvalidInputReturnsFalse($input) {
88 $this->fixture
->setFieldName('myEmail');
89 $requestHandlerMock = $this->helper
->getRequestHandler(array(
92 $this->fixture
->injectRequestHandler($requestHandlerMock);
95 $this->fixture
->isValid()