Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / dbal / tests / Doctrine / Tests / DBAL / Types / ObjectTest.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 ObjectTest 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('object');
20     }
21
22     public function tearDown()
23     {
24         error_reporting(-1); // reactive all error levels
25     }
26
27     public function testObjectConvertsToDatabaseValue()
28     {
29         $this->assertInternalType('string', $this->_type->convertToDatabaseValue(new \stdClass(), $this->_platform));
30     }
31
32     public function testObjectConvertsToPHPValue()
33     {
34         $this->assertInternalType('object', $this->_type->convertToPHPValue(serialize(new \stdClass), $this->_platform));
35     }
36
37     public function testConversionFailure()
38     {
39         error_reporting( (E_ALL | E_STRICT) - \E_NOTICE );
40         $this->setExpectedException('Doctrine\DBAL\Types\ConversionException');
41         $this->_type->convertToPHPValue('abcdefg', $this->_platform);
42     }
43
44     public function testNullConversion()
45     {
46         $this->assertNull($this->_type->convertToPHPValue(null, $this->_platform));
47     }
48
49     /**
50      * @group DBAL-73
51      */
52     public function testFalseConversion()
53     {
54         $this->assertFalse($this->_type->convertToPHPValue(serialize(false), $this->_platform));
55     }
56 }