2 /***************************************************************
5 * (c) 2009 Jochen Rau <jochen.rau@typoplanet.de>
8 * This class is a backport of the corresponding class of FLOW3.
9 * All credits go to the v5 team.
11 * This script is part of the TYPO3 project. The TYPO3 project is
12 * free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * The GNU General Public License can be found at
18 * http://www.gnu.org/copyleft/gpl.html.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
29 * Testcase for the email address validator
31 * This testcase checks the expected behavior for Extbase < 1.4.0, to make sure
32 * we do not break backwards compatibility.
36 * @version $Id: EmailAddressValidator_testcase.php 2428 2010-07-20 10:18:51Z jocrau $
38 class Tx_Extbase_Tests_Unit_Validation_Validator_BeforeExtbase14_EmailAddressValidatorTest
extends Tx_Extbase_Tests_Unit_BaseTestCase
{
41 * Data provider with valid email addresses
45 public function validAddresses() {
47 array('andreas.foerthner@netlogix.de'),
48 array('user@localhost.localdomain'),
49 array('info@guggenheim.museum'),
50 array('just@test.invalid'),
51 array('just+spam@test.de')
57 * @dataProvider validAddresses
58 * @param mixed $address
60 public function emailAddressValidatorReturnsTrueForAValidEmailAddress($address) {
61 $emailAddressValidator = new Tx_Extbase_Validation_Validator_EmailAddressValidator();
62 $this->assertTrue($emailAddressValidator->isValid($address), "$address was declared to be invalid, but it is valid.");
66 * Data provider with invalid email addresses
70 public function invalidAddresses() {
72 array('andreas.foerthner@'),
73 array('andreas@foerthner@example.com'),
75 array('someone@typo3.'),
76 array('local@192.168.2'),
77 array('local@192.168.270.1'),
78 array('just@test.invalid ')
84 * @dataProvider invalidAddresses
85 * @param mixed $address
87 public function emailAddressValidatorReturnsFalseForAnInvalidEmailAddress($address) {
88 $emailAddressValidator = $this->getMock('Tx_Extbase_Validation_Validator_EmailAddressValidator', array('addError'), array(), '', FALSE);
89 $this->assertFalse($emailAddressValidator->isValid($address));
95 public function emailValidatorCreatesTheCorrectErrorForAnInvalidEmailAddress() {
96 $emailAddressValidator = $this->getMock('Tx_Extbase_Validation_Validator_EmailAddressValidator', array('addError'), array(), '', FALSE);
97 $emailAddressValidator->expects($this->once())->method('addError')->with('The given subject was not a valid email address.', 1221559976);
98 $emailAddressValidator->isValid('notAValidMail@Address');