|
|
@ -1,5 +1,6 @@ |
|
|
|
<?php |
|
|
|
<?php |
|
|
|
namespace yiiunit\framework\validators; |
|
|
|
namespace yiiunit\framework\validators; |
|
|
|
|
|
|
|
|
|
|
|
use yii\validators\EmailValidator; |
|
|
|
use yii\validators\EmailValidator; |
|
|
|
use yiiunit\TestCase; |
|
|
|
use yiiunit\TestCase; |
|
|
|
|
|
|
|
|
|
|
@ -25,4 +26,33 @@ class EmailValidatorTest extends TestCase |
|
|
|
$this->assertTrue($validator->validateValue('5011@gmail.com')); |
|
|
|
$this->assertTrue($validator->validateValue('5011@gmail.com')); |
|
|
|
$this->assertFalse($validator->validateValue('test@example.com')); |
|
|
|
$this->assertFalse($validator->validateValue('test@example.com')); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function testValidateAttribute() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$val = new EmailValidator(); |
|
|
|
|
|
|
|
$model = new FakedValidationModel(); |
|
|
|
|
|
|
|
$model->attr_email = '5011@gmail.com'; |
|
|
|
|
|
|
|
$val->validateAttribute($model, 'attr_email'); |
|
|
|
|
|
|
|
$this->assertFalse($model->hasErrors('attr_email')); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function testValidateValueIdn() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (!function_exists('idn_to_ascii')) { |
|
|
|
|
|
|
|
$this->markTestSkipped('Intl extension required'); |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$val = new EmailValidator(array('enableIDN' => true)); |
|
|
|
|
|
|
|
$this->assertTrue($val->validateValue('5011@example.com')); |
|
|
|
|
|
|
|
$this->assertTrue($val->validateValue('example@äüößìà.de')); |
|
|
|
|
|
|
|
$this->assertTrue($val->validateValue('example@xn--zcack7ayc9a.de')); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function testValidateValueWithName() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$val = new EmailValidator(array('allowName' => true)); |
|
|
|
|
|
|
|
$this->assertTrue($val->validateValue('test@example.com')); |
|
|
|
|
|
|
|
$this->assertTrue($val->validateValue('John Smith <john.smith@example.com>')); |
|
|
|
|
|
|
|
$this->assertFalse($val->validateValue('John Smith <example.com>')); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|