Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / dbal / tests / Doctrine / Tests / DBAL / Types / TimeTest.php
1 <?php
2
3 namespace Doctrine\Tests\DBAL\Types;
4
5 use Doctrine\DBAL\Types\Type;
6 use Doctrine\Tests\DBAL\Mocks;
7
8 require_once __DIR__ . '/../../TestInit.php';
9
10 class TimeTest extends \Doctrine\Tests\DbalTestCase
11 {
12     protected
13         $_platform,
14         $_type;
15
16     protected function setUp()
17     {
18         $this->_platform = new \Doctrine\Tests\DBAL\Mocks\MockPlatform();
19         $this->_type = Type::getType('time');
20     }
21
22     public function testTimeConvertsToDatabaseValue()
23     {
24         $this->assertTrue(
25             is_string($this->_type->convertToDatabaseValue(new \DateTime(), $this->_platform))
26         );
27     }
28
29     public function testTimeConvertsToPHPValue()
30     {
31         $this->assertTrue(
32             $this->_type->convertToPHPValue('5:30:55', $this->_platform)
33             instanceof \DateTime
34         );
35     }
36
37     public function testInvalidTimeFormatConversion()
38     {
39         $this->setExpectedException('Doctrine\DBAL\Types\ConversionException');
40         $this->_type->convertToPHPValue('abcdefg', $this->_platform);
41     }
42
43     public function testNullConversion()
44     {
45         $this->assertNull($this->_type->convertToPHPValue(null, $this->_platform));
46     }
47
48     public function testConvertDateTimeToPHPValue()
49     {
50         $date = new \DateTime("now");
51         $this->assertSame($date, $this->_type->convertToPHPValue($date, $this->_platform));
52     }
53 }