1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

DDC-179 - One more test for possible summer-time crazyness

This commit is contained in:
beberlei 2010-01-13 18:17:36 +00:00
parent 83b247b812
commit 8ebd444966

View file

@ -11,12 +11,19 @@ class DateTest extends \Doctrine\Tests\DbalTestCase
{ {
protected protected
$_platform, $_platform,
$_type; $_type,
$_tz;
protected function setUp() protected function setUp()
{ {
$this->_platform = new \Doctrine\Tests\DBAL\Mocks\MockPlatform(); $this->_platform = new \Doctrine\Tests\DBAL\Mocks\MockPlatform();
$this->_type = Type::getType('date'); $this->_type = Type::getType('date');
$this->_tz = date_default_timezone_get();
}
public function tearDown()
{
date_default_timezone_set($this->_tz);
} }
public function testDateConvertsToDatabaseValue() public function testDateConvertsToDatabaseValue()
@ -41,4 +48,17 @@ class DateTest extends \Doctrine\Tests\DbalTestCase
$this->assertEquals('00:00:00', $date->format('H:i:s')); $this->assertEquals('00:00:00', $date->format('H:i:s'));
} }
public function testDateRests_SummerTimeAffection()
{
date_default_timezone_set('Europe/Berlin');
$date = $this->_type->convertToPHPValue('2009-08-01', $this->_platform);
$this->assertEquals('00:00:00', $date->format('H:i:s'));
$this->assertEquals('2009-08-01', $date->format('Y-m-d'));
$date = $this->_type->convertToPHPValue('2009-11-01', $this->_platform);
$this->assertEquals('00:00:00', $date->format('H:i:s'));
$this->assertEquals('2009-11-01', $date->format('Y-m-d'));
}
} }