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\IpValidator.
30 * @author Andreas Lappe <a.lappe@kuehlhaus.com>
34 class IpValidatorTest
extends \TYPO3\CMS\Extbase\Tests\Unit\BaseTestCase
{
36 * @var \TYPO3\CMS\Form\Tests\Unit\Validation\Helper
41 * @var \TYPO3\CMS\Form\Validation\IpValidator
45 public function setUp() {
46 $this->helper
= new \TYPO3\CMS\Form\Tests\Unit\Validation\
Helper();
47 $this->fixture
= new \TYPO3\CMS\Form\Validation\
IpValidator(array());
50 public function tearDown() {
52 unset($this->fixture
);
55 public function validIpv4Provider() {
57 '127.0.0.1' => array('127.0.0.1'),
58 '10.0.0.4' => array('10.0.0.4'),
59 '192.168.0.4' => array('192.168.0.4'),
60 '0.0.0.0' => array('0.0.0.0')
64 public function invalidIpv4Provider() {
66 '127.0.0.256' => array('127.0.0.256'),
67 '256.0.0.2' => array('256.0.0.2')
73 * @dataProvider validIpv4Provider
75 public function isValidForValidInputReturnsTrue($input) {
76 $this->fixture
->setFieldName('myIp');
77 $requestHandlerMock = $this->helper
->getRequestHandler(array(
80 $this->fixture
->injectRequestHandler($requestHandlerMock);
83 $this->fixture
->isValid()
89 * @dataProvider invalidIpv4Provider
91 public function isValidForInvalidInputReturnsFalse($input) {
92 $this->fixture
->setFieldName('myIp');
93 $requestHandlerMock = $this->helper
->getRequestHandler(array(
96 $this->fixture
->injectRequestHandler($requestHandlerMock);
99 $this->fixture
->isValid()