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\AlphanumericValidator.
30 * @author Andreas Lappe <a.lappe@kuehlhaus.com>
34 class AlphanumericValidatorTest
extends \TYPO3\CMS\Extbase\Tests\Unit\BaseTestCase
{
36 * @var \TYPO3\CMS\Form\Tests\Unit\Validation\Helper
41 * @var \TYPO3\CMS\Form\Validation\AlphanumericValidator
45 public function setUp() {
46 $this->helper
= new \TYPO3\CMS\Form\Tests\Unit\Validation\
Helper();
47 $this->fixture
= new \TYPO3\CMS\Form\Validation\
AlphanumericValidator(array());
50 public function tearDown() {
51 unset($this->helper
, $this->fixture
);
54 public function validDataProviderWithoutWhitespace() {
56 'ascii without spaces' => array('thisismyinput4711'),
57 'accents without spaces' => array('éóéàèò4711'),
58 'umlauts without spaces' => array('üöä4711'),
59 'empty string' => array('')
63 public function validDataProviderWithWhitespace() {
65 'ascii with spaces' => array('This is my input 4711'),
66 'accents with spaces' => array('Sigur Rós 4711'),
67 'umlauts with spaces' => array('Hürriyet Daily News 4711'),
68 'space' => array(' '),
69 'empty string' => array('')
73 public function invalidDataProviderWithoutWhitespace() {
75 'ascii with dash' => array('my-name-4711'),
76 'accents with underscore' => array('Sigur_Rós_4711'),
77 'umlauts with periods' => array('Hürriyet.Daily.News.4711'),
78 'space' => array(' '),
82 public function invalidDataProviderWithWhitespace() {
84 'ascii with spaces and dashes' => array('This is my-name 4711'),
85 'accents with spaces and underscores' => array('Listen to Sigur_Rós_Band 4711'),
86 'umlauts with spaces and periods' => array('Go get the Hürriyet.Daily.News 4711')
92 * @dataProvider validDataProviderWithoutWhitespace
94 public function isValidForValidInputWithoutAllowedWhitespaceReturnsTrue($input) {
95 $requestHandlerMock = $this->helper
->getRequestHandler(array(
99 $this->fixture
->setFieldName('name');
100 $this->fixture
->injectRequestHandler($requestHandlerMock);
103 $this->fixture
->isValid()
109 * @dataProvider validDataProviderWithWhitespace
111 public function isValidForValidInputWithAllowedWhitespaceReturnsTrue($input) {
112 $requestHandlerMock = $this->helper
->getRequestHandler(array(
116 $this->fixture
->setAllowWhiteSpace(TRUE);
117 $this->fixture
->setFieldName('name');
118 $this->fixture
->injectRequestHandler($requestHandlerMock);
121 $this->fixture
->isValid()
127 * @dataProvider invalidDataProviderWithoutWhitespace
129 public function isValidForInvalidInputWithoutAllowedWhitespaceReturnsFalse($input) {
130 $requestHandlerMock = $this->helper
->getRequestHandler(array(
134 $this->fixture
->setFieldName('name');
135 $this->fixture
->injectRequestHandler($requestHandlerMock);
138 $this->fixture
->isValid()
144 * @dataProvider invalidDataProviderWithWhitespace
146 public function isValidForInvalidInputWithAllowedWhitespaceReturnsFalse($input) {
147 $requestHandlerMock = $this->helper
->getRequestHandler(array(
151 $this->fixture
->setAllowWhiteSpace(TRUE);
152 $this->fixture
->setFieldName('name');
153 $this->fixture
->injectRequestHandler($requestHandlerMock);
156 $this->fixture
->isValid()