DateValidatorTest.php 2.43 KB
Newer Older
Suralc committed
1 2 3 4 5 6
<?php

namespace yiiunit\framework\validators;

use DateTime;
use yii\validators\DateValidator;
7
use yiiunit\data\validators\models\FakedValidationModel;
Suralc committed
8 9
use yiiunit\TestCase;

10 11 12
/**
 * @group validators
 */
Suralc committed
13 14
class DateValidatorTest extends TestCase
{
15 16 17 18 19
    protected function setUp()
    {
        parent::setUp();
        $this->mockApplication();
    }
20

21 22 23 24 25
    public function testEnsureMessageIsSet()
    {
        $val = new DateValidator;
        $this->assertTrue($val->message !== null && strlen($val->message) > 1);
    }
Suralc committed
26

27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
    public function testValidateValue()
    {
        $val = new DateValidator;
        $this->assertFalse($val->validate('3232-32-32'));
        $this->assertTrue($val->validate('2013-09-13'));
        $this->assertFalse($val->validate('31.7.2013'));
        $this->assertFalse($val->validate('31-7-2013'));
        $this->assertFalse($val->validate(time()));
        $val->format = 'U';
        $this->assertTrue($val->validate(time()));
        $val->format = 'd.m.Y';
        $this->assertTrue($val->validate('31.7.2013'));
        $val->format = 'Y-m-!d H:i:s';
        $this->assertTrue($val->validate('2009-02-15 15:16:17'));
    }
Suralc committed
42

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
    public function testValidateAttribute()
    {
        // error-array-add
        $val = new DateValidator;
        $model = new FakedValidationModel;
        $model->attr_date = '2013-09-13';
        $val->validateAttribute($model, 'attr_date');
        $this->assertFalse($model->hasErrors('attr_date'));
        $model = new FakedValidationModel;
        $model->attr_date = '1375293913';
        $val->validateAttribute($model, 'attr_date');
        $this->assertTrue($model->hasErrors('attr_date'));
        //// timestamp attribute
        $val = new DateValidator(['timestampAttribute' => 'attr_timestamp']);
        $model = new FakedValidationModel;
        $model->attr_date = '2013-09-13';
        $model->attr_timestamp = true;
        $val->validateAttribute($model, 'attr_date');
        $this->assertFalse($model->hasErrors('attr_date'));
        $this->assertFalse($model->hasErrors('attr_timestamp'));
        $this->assertEquals(
            DateTime::createFromFormat($val->format, '2013-09-13')->getTimestamp(),
            $model->attr_timestamp
        );
        $val = new DateValidator();
        $model = FakedValidationModel::createWithAttributes(['attr_date' => []]);
        $val->validateAttribute($model, 'attr_date');
        $this->assertTrue($model->hasErrors('attr_date'));
Suralc committed
71

72
    }
Qiang Xue committed
73
}