You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.7 KiB
60 lines
1.7 KiB
<?php |
|
namespace yiiunit\framework\validators; |
|
|
|
use yii\validators\EmailValidator; |
|
use yiiunit\data\validators\models\FakedValidationModel; |
|
use yiiunit\TestCase; |
|
|
|
/** |
|
* EmailValidatorTest |
|
* @group validators |
|
*/ |
|
class EmailValidatorTest extends TestCase |
|
{ |
|
public function testValidateValue() |
|
{ |
|
$validator = new EmailValidator(); |
|
|
|
$this->assertTrue($validator->validateValue('sam@rmcreative.ru')); |
|
$this->assertTrue($validator->validateValue('5011@gmail.com')); |
|
$this->assertFalse($validator->validateValue('rmcreative.ru')); |
|
} |
|
|
|
public function testValidateValueMx() |
|
{ |
|
$validator = new EmailValidator(); |
|
$validator->checkMX = true; |
|
|
|
$this->assertTrue($validator->validateValue('5011@gmail.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(['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(['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>')); |
|
} |
|
}
|
|
|