mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-10-31 18:47:33 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			1235 lines
		
	
	
		
			51 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			1235 lines
		
	
	
		
			51 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * @link https://www.yiiframework.com/
 | |
|  * @copyright Copyright (c) 2008 Yii Software LLC
 | |
|  * @license https://www.yiiframework.com/license/
 | |
|  */
 | |
| 
 | |
| namespace yiiunit\framework\validators;
 | |
| 
 | |
| use IntlDateFormatter;
 | |
| use yii\validators\DateValidator;
 | |
| use yiiunit\data\validators\models\FakedValidationModel;
 | |
| use yiiunit\framework\i18n\IntlTestHelper;
 | |
| use yiiunit\TestCase;
 | |
| 
 | |
| /**
 | |
|  * @group validators
 | |
|  */
 | |
| class DateValidatorTest extends TestCase
 | |
| {
 | |
|     protected function setUp(): void
 | |
|     {
 | |
|         parent::setUp();
 | |
| 
 | |
|         IntlTestHelper::setIntlStatus($this);
 | |
| 
 | |
|         $this->mockApplication([
 | |
|             'timeZone' => 'UTC',
 | |
|             'language' => 'ru-RU',
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     protected function tearDown(): void
 | |
|     {
 | |
|         parent::tearDown();
 | |
|         IntlTestHelper::resetIntlStatus();
 | |
|     }
 | |
| 
 | |
|     public function testEnsureMessageIsSet()
 | |
|     {
 | |
|         $val = new DateValidator();
 | |
|         $this->assertTrue($val->message !== null && strlen($val->message) > 1);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider provideTimezones
 | |
|      * @param string $timezone
 | |
|      */
 | |
|     public function testIntlValidateValue($timezone)
 | |
|     {
 | |
|         date_default_timezone_set($timezone);
 | |
|         $this->testValidateValue($timezone);
 | |
| 
 | |
|         $this->mockApplication([
 | |
|             'language' => 'en-GB',
 | |
|             'components' => [
 | |
|                 'formatter' => [
 | |
|                     'dateFormat' => 'short',
 | |
|                 ],
 | |
|             ],
 | |
|         ]);
 | |
|         $val = new DateValidator();
 | |
|         $this->assertTrue($val->validate('31/5/2017'));
 | |
|         $this->assertFalse($val->validate('5/31/2017'));
 | |
|         $val = new DateValidator(['format' => 'short', 'locale' => 'en-GB']);
 | |
|         $this->assertTrue($val->validate('31/5/2017'));
 | |
|         $this->assertFalse($val->validate('5/31/2017'));
 | |
| 
 | |
|         $this->mockApplication([
 | |
|             'language' => 'de-DE',
 | |
|             'components' => [
 | |
|                 'formatter' => [
 | |
|                     'dateFormat' => 'short',
 | |
|                 ],
 | |
|             ],
 | |
|         ]);
 | |
|         $val = new DateValidator();
 | |
|         $this->assertTrue($val->validate('31.5.2017'));
 | |
|         $this->assertFalse($val->validate('5.31.2017'));
 | |
|         $val = new DateValidator(['format' => 'short', 'locale' => 'de-DE']);
 | |
|         $this->assertTrue($val->validate('31.5.2017'));
 | |
|         $this->assertFalse($val->validate('5.31.2017'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider provideTimezones
 | |
|      * @param string $timezone
 | |
|      */
 | |
|     public function testValidateValue($timezone)
 | |
|     {
 | |
|         date_default_timezone_set($timezone);
 | |
| 
 | |
|         // test PHP format
 | |
|         $val = new DateValidator(['format' => 'php:Y-m-d']);
 | |
|         $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('20121212'));
 | |
|         $this->assertFalse($val->validate('asdasdfasfd'));
 | |
|         $this->assertFalse($val->validate('2012-12-12foo'));
 | |
|         $this->assertFalse($val->validate(''));
 | |
|         $this->assertFalse($val->validate(time()));
 | |
|         $val->format = 'php:U';
 | |
|         $this->assertTrue($val->validate(time()));
 | |
|         $val->format = 'php:d.m.Y';
 | |
|         $this->assertTrue($val->validate('31.7.2013'));
 | |
|         $val->format = 'php:Y-m-!d H:i:s';
 | |
|         $this->assertTrue($val->validate('2009-02-15 15:16:17'));
 | |
| 
 | |
|         // test ICU format
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd']);
 | |
|         $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('20121212'));
 | |
|         $this->assertFalse($val->validate('asdasdfasfd'));
 | |
|         $this->assertFalse($val->validate('2012-12-12foo'));
 | |
|         $this->assertFalse($val->validate(''));
 | |
|         $this->assertFalse($val->validate(time()));
 | |
|         $val->format = 'dd.MM.yyyy';
 | |
|         $this->assertTrue($val->validate('31.7.2013'));
 | |
|         $val->format = 'yyyy-MM-dd HH:mm:ss';
 | |
|         $this->assertTrue($val->validate('2009-02-15 15:16:17'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider provideTimezones
 | |
|      * @param string $timezone
 | |
|      */
 | |
|     public function testIntlValidateAttributePHPFormat($timezone)
 | |
|     {
 | |
|         $this->testValidateAttributePHPFormat($timezone);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider provideTimezones
 | |
|      * @param string $timezone
 | |
|      */
 | |
|     public function testValidateAttributePHPFormat($timezone)
 | |
|     {
 | |
|         date_default_timezone_set($timezone);
 | |
| 
 | |
|         // error-array-add
 | |
|         $val = new DateValidator(['format' => 'php:Y-m-d']);
 | |
|         $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(['format' => 'php:Y-m-d', '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(
 | |
|             1379030400, // 2013-09-13 00:00:00
 | |
|             $model->attr_timestamp
 | |
|         );
 | |
|         // array value
 | |
|         $val = new DateValidator(['format' => 'php:Y-m-d']);
 | |
|         $model = FakedValidationModel::createWithAttributes(['attr_date' => ['2013-09-13']]);
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertTrue($model->hasErrors('attr_date'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider provideTimezones
 | |
|      * @param string $timezone
 | |
|      */
 | |
|     public function testIntlValidateAttributeICUFormat($timezone)
 | |
|     {
 | |
|         $this->testValidateAttributeICUFormat($timezone);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider provideTimezones
 | |
|      * @param string $timezone
 | |
|      */
 | |
|     public function testValidateAttributeICUFormat($timezone)
 | |
|     {
 | |
|         date_default_timezone_set($timezone);
 | |
| 
 | |
|         // error-array-add
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd']);
 | |
|         $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(['format' => 'yyyy-MM-dd', '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->assertSame(
 | |
|             1379030400, // 2013-09-13 00:00:00
 | |
|             $model->attr_timestamp
 | |
|         );
 | |
|         // array value
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd']);
 | |
|         $model = FakedValidationModel::createWithAttributes(['attr_date' => ['2013-09-13']]);
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertTrue($model->hasErrors('attr_date'));
 | |
|         // invalid format
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd']);
 | |
|         $model = FakedValidationModel::createWithAttributes(['attr_date' => '2012-12-12foo']);
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertTrue($model->hasErrors('attr_date'));
 | |
|     }
 | |
| 
 | |
|     public function testIntlMultibyteString()
 | |
|     {
 | |
|         $val = new DateValidator(['format' => 'dd MMM yyyy', 'locale' => 'de_DE']);
 | |
|         $model = FakedValidationModel::createWithAttributes(['attr_date' => '12 Mai 2014']);
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
| 
 | |
|         $val = new DateValidator(['format' => 'dd MMM yyyy', 'locale' => 'ru_RU']);
 | |
|         $model = FakedValidationModel::createWithAttributes(['attr_date' => '12 мая 2014']);
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|     }
 | |
| 
 | |
|     public function provideTimezones()
 | |
|     {
 | |
|         return [
 | |
|             ['UTC'],
 | |
|             ['Europe/Berlin'],
 | |
|             ['America/Jamaica'],
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public function timestampFormatProvider()
 | |
|     {
 | |
|         $return = [];
 | |
|         foreach ($this->provideTimezones() as $appTz) {
 | |
|             foreach ($this->provideTimezones() as $tz) {
 | |
|                 $return[] = ['yyyy-MM-dd', '2013-09-13', '2013-09-13', $tz[0], $appTz[0]];
 | |
|                 // regardless of timezone, a simple date input should always result in 00:00:00 time
 | |
|                 $return[] = ['yyyy-MM-dd HH:mm:ss', '2013-09-13', '2013-09-13 00:00:00', $tz[0], $appTz[0]];
 | |
|                 $return[] = ['php:Y-m-d', '2013-09-13', '2013-09-13', $tz[0], $appTz[0]];
 | |
|                 $return[] = ['php:Y-m-d H:i:s', '2013-09-13', '2013-09-13 00:00:00', $tz[0], $appTz[0]];
 | |
|                 $return[] = ['php:U', '2013-09-13', '1379030400', $tz[0], $appTz[0]];
 | |
|                 $return[] = [null, '2013-09-13', 1379030400, $tz[0], $appTz[0]];
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         return $return;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider timestampFormatProvider
 | |
|      * @param string|null $format
 | |
|      * @param string $date
 | |
|      * @param string|int $expectedDate
 | |
|      * @param string $timezone
 | |
|      * @param string $appTimezone
 | |
|      */
 | |
|     public function testIntlTimestampAttributeFormat($format, $date, $expectedDate, $timezone, $appTimezone)
 | |
|     {
 | |
|         $this->testTimestampAttributeFormat($format, $date, $expectedDate, $timezone, $appTimezone);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider timestampFormatProvider
 | |
|      * @param string|null $format
 | |
|      * @param string $date
 | |
|      * @param string|int $expectedDate
 | |
|      * @param string $timezone
 | |
|      * @param string $appTimezone
 | |
|      */
 | |
|     public function testTimestampAttributeFormat($format, $date, $expectedDate, $timezone, $appTimezone)
 | |
|     {
 | |
|         date_default_timezone_set($timezone);
 | |
| 
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd', 'timestampAttribute' => 'attr_timestamp', 'timestampAttributeFormat' => $format, 'timeZone' => $appTimezone]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = $date;
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame($expectedDate, $model->attr_timestamp);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider provideTimezones
 | |
|      * @param string $timezone
 | |
|      */
 | |
|     public function testIntlValidationWithTime($timezone)
 | |
|     {
 | |
|         // prepare data for specific ICU version, see https://github.com/yiisoft/yii2/issues/15140
 | |
|         switch (true) {
 | |
|             case (version_compare(INTL_ICU_VERSION, '55.1', '>=')):
 | |
|                 $enGB_dateTime_valid = '31/05/2017, 12:30';
 | |
|                 $enGB_dateTime_invalid = '05/31/2017, 12:30';
 | |
|                 $deDE_dateTime_valid = '31.05.2017, 12:30';
 | |
|                 $deDE_dateTime_invalid = '05.31.2017, 12:30';
 | |
|                 break;
 | |
|             default:
 | |
|                 $enGB_dateTime_valid = '31/5/2017 12:30';
 | |
|                 $enGB_dateTime_invalid = '5/31/2017 12:30';
 | |
|                 $deDE_dateTime_valid = '31.5.2017 12:30';
 | |
|                 $deDE_dateTime_invalid = '5.31.2017 12:30';
 | |
|         }
 | |
| 
 | |
|         $this->testValidationWithTime($timezone);
 | |
| 
 | |
|         $this->mockApplication([
 | |
|             'language' => 'en-GB',
 | |
|             'components' => [
 | |
|                 'formatter' => [
 | |
|                     'dateFormat' => 'long',
 | |
|                     'datetimeFormat' => 'short', // this is the format to be used by the validator by default
 | |
|                 ],
 | |
|             ],
 | |
|         ]);
 | |
| 
 | |
|         $val = new DateValidator(['type' => DateValidator::TYPE_DATETIME]);
 | |
|         $this->assertTrue($val->validate($enGB_dateTime_valid));
 | |
|         $this->assertFalse($val->validate($enGB_dateTime_invalid));
 | |
|         $val = new DateValidator(['format' => 'short', 'locale' => 'en-GB', 'type' => DateValidator::TYPE_DATETIME]);
 | |
|         $this->assertTrue($val->validate($enGB_dateTime_valid));
 | |
|         $this->assertFalse($val->validate($enGB_dateTime_invalid));
 | |
|         $this->mockApplication([
 | |
|             'language' => 'de-DE',
 | |
|             'components' => [
 | |
|                 'formatter' => [
 | |
|                     'dateFormat' => 'long',
 | |
|                     'datetimeFormat' => 'short', // this is the format to be used by the validator by default
 | |
|                 ],
 | |
|             ],
 | |
|         ]);
 | |
|         $val = new DateValidator(['type' => DateValidator::TYPE_DATETIME]);
 | |
|         $this->assertTrue($val->validate($deDE_dateTime_valid));
 | |
|         $this->assertFalse($val->validate($deDE_dateTime_invalid));
 | |
|         $val = new DateValidator(['format' => 'short', 'locale' => 'de-DE', 'type' => DateValidator::TYPE_DATETIME]);
 | |
|         $this->assertTrue($val->validate($deDE_dateTime_valid));
 | |
|         $this->assertFalse($val->validate($deDE_dateTime_invalid));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider provideTimezones
 | |
|      * @param string $timezone
 | |
|      */
 | |
|     public function testValidationWithTime($timezone)
 | |
|     {
 | |
|         date_default_timezone_set($timezone);
 | |
| 
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timeZone' => 'UTC'
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13 14:23:15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame(1379082195, $model->attr_timestamp);
 | |
| 
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timeZone' => 'Europe/Berlin',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13 16:23:15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame(1379082195, $model->attr_timestamp);
 | |
| 
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'UTC',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13 14:23:15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2013-09-13 14:23:15', $model->attr_timestamp);
 | |
| 
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'Europe/Berlin',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13 16:23:15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2013-09-13 14:23:15', $model->attr_timestamp);
 | |
| 
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'php:Y-m-d H:i:s',
 | |
|             'timeZone' => 'UTC',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13 14:23:15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2013-09-13 14:23:15', $model->attr_timestamp);
 | |
| 
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'php:Y-m-d H:i:s',
 | |
|             'timeZone' => 'Europe/Berlin',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13 16:23:15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2013-09-13 14:23:15', $model->attr_timestamp);
 | |
| 
 | |
|         // setting non-UTC defaultTimeZone should not impact values with format where time part is provided
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timeZone' => 'UTC',
 | |
|             'defaultTimeZone' => 'Europe/Berlin',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13 16:23:15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame(1379089395, $model->attr_timestamp); // = 2013-09-13 16:23:15 UTC
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider provideTimezones
 | |
|      * @param string $timezone
 | |
|      */
 | |
|     public function testIntlValidationWithTimeAndOutputTimeZone($timezone)
 | |
|     {
 | |
|         $this->testValidationWithTime($timezone);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider provideTimezones
 | |
|      * @param string $timezone
 | |
|      */
 | |
|     public function testValidationWithTimeAndOutputTimeZone($timezone)
 | |
|     {
 | |
|         date_default_timezone_set($timezone);
 | |
| 
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd HH:mm:ss', 'timestampAttribute' => 'attr_timestamp', 'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss', 'timestampAttributeTimeZone' => 'Europe/Berlin', 'timeZone' => 'UTC']);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13 14:23:15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2013-09-13 16:23:15', $model->attr_timestamp);
 | |
|         $val = new DateValidator(['format' => 'php:Y-m-d H:i:s', 'timestampAttribute' => 'attr_timestamp', 'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss', 'timestampAttributeTimeZone' => 'Europe/Berlin', 'timeZone' => 'UTC']);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13 14:23:15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2013-09-13 16:23:15', $model->attr_timestamp);
 | |
| 
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd HH:mm:ss', 'timestampAttribute' => 'attr_timestamp', 'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss', 'timestampAttributeTimeZone' => 'Europe/Berlin', 'timeZone' => 'Europe/Berlin']);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13 16:23:15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2013-09-13 16:23:15', $model->attr_timestamp);
 | |
|         $val = new DateValidator(['format' => 'php:Y-m-d H:i:s', 'timestampAttribute' => 'attr_timestamp', 'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss', 'timestampAttributeTimeZone' => 'Europe/Berlin', 'timeZone' => 'Europe/Berlin']);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13 16:23:15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2013-09-13 16:23:15', $model->attr_timestamp);
 | |
| 
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd HH:mm:ss', 'timestampAttribute' => 'attr_timestamp', 'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss', 'timestampAttributeTimeZone' => 'America/New_York', 'timeZone' => 'Europe/Berlin']);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13 16:23:15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2013-09-13 10:23:15', $model->attr_timestamp);
 | |
|         $val = new DateValidator(['format' => 'php:Y-m-d H:i:s', 'timestampAttribute' => 'attr_timestamp', 'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss', 'timestampAttributeTimeZone' => 'America/New_York', 'timeZone' => 'Europe/Berlin']);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13 16:23:15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2013-09-13 10:23:15', $model->attr_timestamp);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * The following cases (when no time is specified for 'format') usually raise questions.
 | |
|      * See the discussion here: https://github.com/yiisoft/yii2/issues/14795
 | |
|      *
 | |
|      * @dataProvider provideTimezones
 | |
|      * @param string $timezone
 | |
|      */
 | |
|     public function testValidationWithoutTime($timezone)
 | |
|     {
 | |
|         date_default_timezone_set($timezone);
 | |
| 
 | |
|         // timeZone => UTC, timestampAttributeTimeZone => <default>
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'UTC',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-15 00:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'php:Y-m-d',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'UTC',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-15 00:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // timeZone => Europe/Berlin, timestampAttributeTimeZone => <default>
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'Europe/Berlin',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-15 00:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'php:Y-m-d',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'Europe/Berlin',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-15 00:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // timeZone => UTC, timestampAttributeTimeZone => Europe/Berlin
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'UTC',
 | |
|             'timestampAttributeTimeZone' => 'Europe/Berlin',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-15 02:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'php:Y-m-d',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'UTC',
 | |
|             'timestampAttributeTimeZone' => 'Europe/Berlin',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-15 02:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // timeZone => Europe/Berlin, timestampAttributeTimeZone => Europe/Berlin
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'Europe/Berlin',
 | |
|             'timestampAttributeTimeZone' => 'Europe/Berlin',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-15 02:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'php:Y-m-d',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'Europe/Berlin',
 | |
|             'timestampAttributeTimeZone' => 'Europe/Berlin',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-15 02:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // defaultTimeZone different than UTC:
 | |
| 
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'php:Y-m-d',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timeZone' => 'Europe/Warsaw',
 | |
|             'defaultTimeZone' => 'Europe/Warsaw',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame(1497477600, $model->attr_timestamp); // = 2017-06-14 22:00:00 UTC = 2017-06-15 00:00:00 Europe/Warsaw
 | |
| 
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'defaultTimeZone' => 'Europe/Warsaw',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame(1497477600, $model->attr_timestamp);
 | |
| 
 | |
|         // ICU, timeZone => America/Jamaica, timestampAttributeTimeZone => UTC (default)
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'America/Jamaica',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-15 00:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // PHP, timeZone => America/Jamaica, timestampAttributeTimeZone => UTC (default)
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'php:Y-m-d',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'America/Jamaica',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-15 00:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // ICU, timeZone => UTC (default), timestampAttributeTimeZone => America/Jamaica
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'UTC',
 | |
|             'timestampAttributeTimeZone' => 'America/Jamaica',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-14 19:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // PHP, timeZone => UTC (default), timestampAttributeTimeZone => America/Jamaica
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'php:Y-m-d',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'UTC',
 | |
|             'timestampAttributeTimeZone' => 'America/Jamaica',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-14 19:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // ICU, timeZone => America/Jamaica, timestampAttributeTimeZone => America/Jamaica
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'America/Jamaica',
 | |
|             'timestampAttributeTimeZone' => 'America/Jamaica',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-14 19:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // PHP, timeZone => America/Jamaica, timestampAttributeTimeZone => America/Jamaica
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'php:Y-m-d',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'timeZone' => 'America/Jamaica',
 | |
|             'timestampAttributeTimeZone' => 'America/Jamaica',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2017-06-15';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2017-06-14 19:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // ICU, defaultTimeZone => America/Jamaica, timestampAttributeTimeZone => UTC (default)
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'defaultTimeZone' => 'America/Jamaica',
 | |
|             'timestampAttributeTimeZone' => 'UTC',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2020-01-27';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2020-01-27 05:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // PHP, defaultTimeZone => America/Jamaica, timestampAttributeTimeZone => UTC (default)
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'php:Y-m-d',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'defaultTimeZone' => 'America/Jamaica',
 | |
|             'timestampAttributeTimeZone' => 'UTC',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2020-01-27';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2020-01-27 05:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // ICU, defaultTimeZone => UTC (default), timestampAttributeTimeZone => America/Jamaica
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'defaultTimeZone' => 'UTC',
 | |
|             'timestampAttributeTimeZone' => 'America/Jamaica',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2020-01-27';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2020-01-26 19:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // PHP, defaultTimeZone => UTC (default), timestampAttributeTimeZone => America/Jamaica
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'php:Y-m-d',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'defaultTimeZone' => 'UTC',
 | |
|             'timestampAttributeTimeZone' => 'America/Jamaica',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2020-01-27';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2020-01-26 19:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // ICU, defaultTimeZone => America/Jamaica, timestampAttributeTimeZone => America/Jamaica
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'yyyy-MM-dd',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'defaultTimeZone' => 'America/Jamaica',
 | |
|             'timestampAttributeTimeZone' => 'America/Jamaica',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2020-01-27';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2020-01-27 00:00:00', $model->attr_timestamp);
 | |
| 
 | |
|         // PHP, defaultTimeZone => America/Jamaica, timestampAttributeTimeZone => America/Jamaica
 | |
|         $val = new DateValidator([
 | |
|             'format' => 'php:Y-m-d',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'timestampAttributeFormat' => 'yyyy-MM-dd HH:mm:ss',
 | |
|             'defaultTimeZone' => 'America/Jamaica',
 | |
|             'timestampAttributeTimeZone' => 'America/Jamaica',
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2020-01-27';
 | |
|         $model->attr_timestamp = true;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertFalse($model->hasErrors('attr_timestamp'));
 | |
|         $this->assertSame('2020-01-27 00:00:00', $model->attr_timestamp);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @dataProvider provideTimezones
 | |
|      * @param string $timezone
 | |
|      */
 | |
|     public function testIntlValidationWithoutTime($timezone)
 | |
|     {
 | |
|         $this->testValidationWithoutTime($timezone);
 | |
|     }
 | |
| 
 | |
|     public function testIntlValidateRange()
 | |
|     {
 | |
|         $this->testValidateValueRange();
 | |
|     }
 | |
| 
 | |
|     public function testValidateValueRange()
 | |
|     {
 | |
|         if (PHP_INT_SIZE == 8) { // this passes only on 64bit systems
 | |
|             // intl parser allows 14 for yyyy pattern, see the following for more details:
 | |
|             // https://github.com/yiisoft/yii2/blob/a003a8fb487dfa60c0f88ecfacf18a7407ced18b/framework/validators/DateValidator.php#L51-L57
 | |
|             $date = '14-09-13';
 | |
|             $val = new DateValidator(['format' => 'yyyy-MM-dd']);
 | |
|             $this->assertTrue($val->validate($date), "$date is valid");
 | |
| 
 | |
|             $min = '1900-01-01';
 | |
|             $beforeMin = '1899-12-31';
 | |
|         } else {
 | |
|             $min = '1920-01-01';
 | |
|             $beforeMin = '1919-12-31';
 | |
|         }
 | |
| 
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd', 'min' => $min]);
 | |
|         $date = '1958-01-12';
 | |
|         $this->assertTrue($val->validate($date), "$date is valid");
 | |
| 
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd', 'max' => '2000-01-01']);
 | |
|         $date = '2014-09-13';
 | |
|         $this->assertFalse($val->validate($date), "$date is too big");
 | |
|         $date = '1958-01-12';
 | |
|         $this->assertTrue($val->validate($date), "$date is valid");
 | |
| 
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd', 'min' => $min, 'max' => '2000-01-01']);
 | |
|         $this->assertTrue($val->validate('1999-12-31'), 'max -1 day is valid');
 | |
|         $this->assertTrue($val->validate('2000-01-01'), 'max is inside range');
 | |
|         $this->assertTrue($val->validate($min), 'min is inside range');
 | |
|         $this->assertFalse($val->validate($beforeMin), 'min -1 day is invalid');
 | |
|         $this->assertFalse($val->validate('2000-01-02'), 'max +1 day is invalid');
 | |
|     }
 | |
| 
 | |
|     private function validateModelAttribute($validator, $date, $expected, $message = '')
 | |
|     {
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = $date;
 | |
|         $validator->validateAttribute($model, 'attr_date');
 | |
|         if (!$expected) {
 | |
|             $this->assertTrue($model->hasErrors('attr_date'), $message);
 | |
|         } else {
 | |
|             $this->assertFalse($model->hasErrors('attr_date'), $message);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public function testIntlValidateAttributeRange()
 | |
|     {
 | |
|         $this->testValidateAttributeRange();
 | |
|     }
 | |
| 
 | |
|     public function testValidateAttributeRange()
 | |
|     {
 | |
|         if (PHP_INT_SIZE == 8) { // this passes only on 64bit systems
 | |
|             // intl parser allows 14 for yyyy pattern, see the following for more details:
 | |
|             // https://github.com/yiisoft/yii2/blob/a003a8fb487dfa60c0f88ecfacf18a7407ced18b/framework/validators/DateValidator.php#L51-L57
 | |
|             $val = new DateValidator(['format' => 'yyyy-MM-dd']);
 | |
|             $date = '14-09-13';
 | |
|             $this->validateModelAttribute($val, $date, true, "$date is valid");
 | |
| 
 | |
|             $min = '1900-01-01';
 | |
|             $beforeMin = '1899-12-31';
 | |
|         } else {
 | |
|             $min = '1920-01-01';
 | |
|             $beforeMin = '1919-12-31';
 | |
|         }
 | |
| 
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd', 'min' => $min]);
 | |
|         $date = '1958-01-12';
 | |
|         $this->validateModelAttribute($val, $date, true, "$date is valid");
 | |
| 
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd', 'max' => '2000-01-01']);
 | |
|         $date = '2014-09-13';
 | |
|         $this->validateModelAttribute($val, $date, false, "$date is too big");
 | |
|         $date = '1958-01-12';
 | |
|         $this->validateModelAttribute($val, $date, true, "$date is valid");
 | |
| 
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd', 'min' => $min, 'max' => '2000-01-01']);
 | |
|         $this->validateModelAttribute($val, '1999-12-31', true, 'max -1 day is valid');
 | |
|         $this->validateModelAttribute($val, '2000-01-01', true, 'max is inside range');
 | |
|         $this->validateModelAttribute($val, $min, true, 'min is inside range');
 | |
|         $this->validateModelAttribute($val, $beforeMin, false, 'min -1 day is invalid');
 | |
|         $this->validateModelAttribute($val, '2000-01-02', false, 'max +1 day is invalid');
 | |
|     }
 | |
| 
 | |
|     public function testIntlValidateValueRangeOld()
 | |
|     {
 | |
|         if ($this->checkOldIcuBug()) {
 | |
|             $this->markTestSkipped('ICU is too old.');
 | |
|         }
 | |
|         $date = '14-09-13';
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd', 'min' => '1920-01-01']);
 | |
|         $this->assertFalse($val->validate($date), "$date is too small");
 | |
|     }
 | |
| 
 | |
|     public function testIntlValidateAttributeRangeOld()
 | |
|     {
 | |
|         if ($this->checkOldIcuBug()) {
 | |
|             $this->markTestSkipped('ICU is too old.');
 | |
|         }
 | |
|         $date = '14-09-13';
 | |
|         $val = new DateValidator(['format' => 'yyyy-MM-dd', 'min' => '1920-01-01']);
 | |
|         $this->validateModelAttribute($val, $date, false, "$date is too small");
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Returns true if the version of ICU is old and has a bug that makes it
 | |
|      * impossible to parse two digit years properly.
 | |
|      * @see https://unicode-org.atlassian.net/browse/ICU-9836
 | |
|      * @return bool
 | |
|      */
 | |
|     private function checkOldIcuBug()
 | |
|     {
 | |
|         $date = '14';
 | |
|         $formatter = new IntlDateFormatter('en-US', IntlDateFormatter::NONE, IntlDateFormatter::NONE, null, null, 'yyyy');
 | |
|         $parsePos = 0;
 | |
|         $parsedDate = @$formatter->parse($date, $parsePos);
 | |
| 
 | |
|         if (is_int($parsedDate) && $parsedDate > 0) {
 | |
|             return true;
 | |
|         }
 | |
| 
 | |
|         return false;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @depends testValidateAttributePHPFormat
 | |
|      */
 | |
|     public function testTimestampAttributeSkipValidation()
 | |
|     {
 | |
|         // timestamp as integer
 | |
|         $val = new DateValidator(['format' => 'php:Y/m/d', 'timestampAttribute' => 'attr_date']);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = 1379030400;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
| 
 | |
|         $val = new DateValidator(['format' => 'php:Y/m/d', 'timestampAttribute' => 'attr_date']);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = 'invalid';
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertTrue($model->hasErrors('attr_date'));
 | |
| 
 | |
|         // timestamp as formatted date
 | |
|         $val = new DateValidator(['format' => 'php:Y/m/d', 'timestampAttribute' => 'attr_date', 'timestampAttributeFormat' => 'php:Y-m-d']);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-13';
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
| 
 | |
|         $val = new DateValidator(['format' => 'php:Y/m/d', 'timestampAttribute' => 'attr_date', 'timestampAttributeFormat' => 'php:Y-m-d']);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '2013-09-2013';
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertTrue($model->hasErrors('attr_date'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Test dates that don't pass strict intl validation
 | |
|      *
 | |
|      * @dataProvider provideTestStrictDateFormatIntlFail
 | |
|      * @param $format
 | |
|      * @param $date
 | |
|      * @param $strictDateFormat
 | |
|      */
 | |
|     public function testStrictDateFormatIntlFail($format, $date, $strictDateFormat)
 | |
|     {
 | |
|         $this->mockApplication([
 | |
|             'timeZone' => 'UTC',
 | |
|             'language' => 'en-US',
 | |
|         ]);
 | |
|         IntlTestHelper::$enableIntl = true;
 | |
| 
 | |
|         $val = new DateValidator(['format' => $format, 'strictDateFormat' => $strictDateFormat]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = $date;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertTrue($model->hasErrors('attr_date'));
 | |
|     }
 | |
| 
 | |
|     public function provideTestStrictDateFormatIntlFail()
 | |
|     {
 | |
|         return [
 | |
|             ['yyyy-MM-dd', '13-Mar-19', true],
 | |
|             ['yyyy-MM-dd', '13-March-19', true],
 | |
|             ['yyyy-MM-dd', '13-03-19', true],
 | |
|             ['yyyy-MM-dd', '13-3-19', true],
 | |
|             ['yyyy-MM-dd', '13-003-19', true],
 | |
|             ['yyyy-MM-dd', '0013-Mar-19', true],
 | |
|             ['yyyy-MM-dd', '13-Mar-00019', true],
 | |
|             ['yyyy-MM-dd', '0000-03-19', true],
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Test dates that pass strict intl validation
 | |
|      *
 | |
|      * @dataProvider provideTestStrictDateFormatIntlPass
 | |
|      * @param $format
 | |
|      * @param $date
 | |
|      * @param $strictDateFormat
 | |
|      */
 | |
|     public function testStrictDateFormatIntlPass($format, $date, $strictDateFormat)
 | |
|     {
 | |
|         $this->mockApplication([
 | |
|             'timeZone' => 'UTC',
 | |
|             'language' => 'en-US',
 | |
|         ]);
 | |
|         IntlTestHelper::$enableIntl = true;
 | |
| 
 | |
|         $val = new DateValidator(['format' => $format, 'strictDateFormat' => $strictDateFormat]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = $date;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|     }
 | |
| 
 | |
|     public function provideTestStrictDateFormatIntlPass()
 | |
|     {
 | |
|         return [
 | |
|             ['yyyy-MM-dd', '0013-03-19', true],
 | |
|             ['yyyy-MM-dd', '2013-03-19', true],
 | |
|             ['yyyy-MM-dd', '0001-03-19', true],
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Test dates that don't pass strict php validation
 | |
|      *
 | |
|      * @dataProvider provideTestStrictDateFormatPhpFail
 | |
|      * @param $format
 | |
|      * @param $date
 | |
|      * @param $strictDateFormat
 | |
|      */
 | |
|     public function testStrictDateFormatPhpFail($format, $date, $strictDateFormat)
 | |
|     {
 | |
|         $this->mockApplication([
 | |
|             'timeZone' => 'UTC',
 | |
|             'language' => 'en-US',
 | |
|         ]);
 | |
|         IntlTestHelper::$enableIntl = false;
 | |
| 
 | |
|         $val = new DateValidator(['format' => $format, 'strictDateFormat' => $strictDateFormat]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = $date;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertTrue($model->hasErrors('attr_date'));
 | |
|     }
 | |
| 
 | |
|     public function provideTestStrictDateFormatPhpFail()
 | |
|     {
 | |
|         return [
 | |
|             ['php:Y-m-d', '13-Mar-19', true],
 | |
|             ['php:Y-m-d', '13-March-19', true],
 | |
|             ['php:Y-m-d', '13-03-19', true],
 | |
|             ['php:Y-m-d', '13-3-19', true],
 | |
|             ['php:Y-m-d', '13-003-19', true],
 | |
|             ['php:Y-m-d', '0013-Mar-19', true],
 | |
|             ['php:Y-m-d', '13-Mar-00019', true],
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Test dates that pass strict php validation
 | |
|      *
 | |
|      * @dataProvider provideTestStrictDateFormatPhpPass
 | |
|      * @param $format
 | |
|      * @param $date
 | |
|      * @param $strictDateFormat
 | |
|      */
 | |
|     public function testStrictDateFormatPhpPass($format, $date, $strictDateFormat)
 | |
|     {
 | |
|         $this->mockApplication([
 | |
|             'timeZone' => 'UTC',
 | |
|             'language' => 'en-US',
 | |
|         ]);
 | |
|         IntlTestHelper::$enableIntl = false;
 | |
| 
 | |
|         $val = new DateValidator(['format' => $format, 'strictDateFormat' => $strictDateFormat]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = $date;
 | |
|         $val->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|     }
 | |
| 
 | |
|     public function provideTestStrictDateFormatPhpPass()
 | |
|     {
 | |
|         return [
 | |
|             ['php:Y-m-d', '0013-03-19', true],
 | |
|             ['php:Y-m-d', '2013-03-19', true],
 | |
|             ['php:Y-m-d', '0001-03-19', true],
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @depends testValidateAttributePHPFormat
 | |
|      */
 | |
|     public function testTimestampAttributeOnEmpty()
 | |
|     {
 | |
|         $validator = new DateValidator([
 | |
|             'format' => 'php:Y/m/d',
 | |
|             'timestampAttribute' => 'attr_date',
 | |
|             'skipOnEmpty' => false,
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '';
 | |
|         $validator->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertNull($model->attr_date);
 | |
| 
 | |
|         $validator = new DateValidator([
 | |
|             'format' => 'php:Y/m/d',
 | |
|             'timestampAttribute' => 'attr_timestamp',
 | |
|             'skipOnEmpty' => false,
 | |
|         ]);
 | |
|         $model = new FakedValidationModel();
 | |
|         $model->attr_date = '';
 | |
|         $model->attr_timestamp = 1379030400;
 | |
|         $validator->validateAttribute($model, 'attr_date');
 | |
|         $this->assertFalse($model->hasErrors('attr_date'));
 | |
|         $this->assertNull($model->attr_timestamp);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Tests that DateValidator with format `php:U` does not truncate timestamp to date.
 | |
|      * @see https://github.com/yiisoft/yii2/issues/15628
 | |
|      */
 | |
|     public function testIssue15628()
 | |
|     {
 | |
|         $validator = new DateValidator(['format' => 'php:U', 'type' => DateValidator::TYPE_DATETIME, 'timestampAttribute' => 'attr_date']);
 | |
|         $model = new FakedValidationModel();
 | |
|         $value = 1518023610;
 | |
|         $model->attr_date = $value;
 | |
| 
 | |
|         $validator->validateAttribute($model, 'attr_date');
 | |
| 
 | |
|         $this->assertEquals($value, $model->attr_date);
 | |
|     }
 | |
| }
 | 
