2016-05-01 22:01:39 +05:30
|
|
|
<?php
|
|
|
|
namespace Ely\Yii2;
|
|
|
|
|
|
|
|
include __DIR__ . '/../vendor/yiisoft/yii2/Yii.php';
|
|
|
|
|
|
|
|
use yii\base\Model;
|
|
|
|
use yii\console\Application;
|
|
|
|
|
|
|
|
class TempmailValidatorTest extends \PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
protected function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
new Application([
|
|
|
|
'id' => 'testapp',
|
|
|
|
'basePath' => __DIR__,
|
|
|
|
'vendorPath' => __DIR__ . '/../vendor',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testValidateValue()
|
|
|
|
{
|
|
|
|
$validator = new TempmailValidator();
|
2017-10-01 04:10:06 +05:30
|
|
|
$this->assertTrue($validator->validate('team@ely.by'));
|
|
|
|
$this->assertFalse($validator->validate('h4l29@spam4.me', $error));
|
|
|
|
$this->assertSame('the input value is not allowed email address.', $error);
|
2016-05-01 22:01:39 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
public function testValidatorOnModel()
|
|
|
|
{
|
2017-10-01 04:10:06 +05:30
|
|
|
$model = $this->createDummyModel();
|
2016-05-01 22:01:39 +05:30
|
|
|
$model->email = 'team@ely.by';
|
|
|
|
$this->assertTrue($model->validate());
|
|
|
|
|
2017-10-01 04:10:06 +05:30
|
|
|
$model = $this->createDummyModel();
|
2016-05-01 22:01:39 +05:30
|
|
|
$model->email = 'spam@spam4.me';
|
|
|
|
$this->assertFalse($model->validate());
|
2017-10-01 04:10:06 +05:30
|
|
|
$this->assertSame('Email is not allowed email address.', $model->getFirstError('email'));
|
2016-05-01 22:01:39 +05:30
|
|
|
|
2017-10-01 04:10:06 +05:30
|
|
|
$model = $this->createDummyModel('{attribute} with custom message.');
|
|
|
|
$model->email = 'spam@spam4.me';
|
|
|
|
$this->assertFalse($model->validate());
|
|
|
|
$this->assertSame('Email with custom message.', $model->getFirstError('email'));
|
2016-05-01 22:01:39 +05:30
|
|
|
}
|
|
|
|
|
2017-10-01 04:10:06 +05:30
|
|
|
private function createDummyModel(string $customMessage = null) {
|
|
|
|
return new class(['customMessage' => $customMessage]) extends Model
|
|
|
|
{
|
|
|
|
public $email;
|
2016-05-01 22:01:39 +05:30
|
|
|
|
2017-10-01 04:10:06 +05:30
|
|
|
public $customMessage;
|
2016-05-01 22:01:39 +05:30
|
|
|
|
2017-10-01 04:10:06 +05:30
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[['email'], TempmailValidator::class, 'message' => $this->customMessage],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
};
|
2016-05-01 22:01:39 +05:30
|
|
|
}
|
|
|
|
}
|
2017-10-01 04:10:06 +05:30
|
|
|
|