2015-03-03 16:59:48 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\ORM\Functional\Ticket;
|
|
|
|
|
|
|
|
use Doctrine\Tests\Models\DDC3597\DDC3597Image;
|
2015-03-04 11:55:08 +01:00
|
|
|
use Doctrine\Tests\Models\DDC3597\DDC3597Media;
|
|
|
|
use Doctrine\Tests\Models\DDC3597\DDC3597Root;
|
2015-03-03 16:59:48 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-117
|
|
|
|
*/
|
2015-03-04 11:55:08 +01:00
|
|
|
class DDC3597Test extends \Doctrine\Tests\OrmFunctionalTestCase {
|
2015-03-03 16:59:48 +01:00
|
|
|
|
2015-03-04 11:55:08 +01:00
|
|
|
protected function setUp() {
|
2015-03-03 16:59:48 +01:00
|
|
|
parent::setUp();
|
2016-12-07 23:33:41 +01:00
|
|
|
$this->_schemaTool->createSchema(
|
|
|
|
[
|
2016-12-08 18:01:04 +01:00
|
|
|
$this->_em->getClassMetadata(DDC3597Root::class),
|
|
|
|
$this->_em->getClassMetadata(DDC3597Media::class),
|
|
|
|
$this->_em->getClassMetadata(DDC3597Image::class)
|
2016-12-07 23:33:41 +01:00
|
|
|
]
|
|
|
|
);
|
2015-03-03 16:59:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-3597
|
|
|
|
*/
|
|
|
|
public function testSaveImageEntity() {
|
|
|
|
$imageEntity = new DDC3597Image('foobar');
|
|
|
|
$imageEntity->setFormat('JPG');
|
|
|
|
$imageEntity->setSize(123);
|
|
|
|
$imageEntity->getDimension()->setWidth(300);
|
|
|
|
$imageEntity->getDimension()->setHeight(500);
|
|
|
|
|
|
|
|
$this->_em->persist($imageEntity);
|
|
|
|
$this->_em->flush(); //before this fix, it will fail with a exception
|
|
|
|
|
|
|
|
$this->_em->clear();
|
|
|
|
|
|
|
|
//request entity
|
2016-12-08 18:01:04 +01:00
|
|
|
$imageEntity = $this->_em->find(DDC3597Image::class, $imageEntity->getId());
|
|
|
|
$this->assertInstanceOf(DDC3597Image::class, $imageEntity);
|
2015-03-03 16:59:48 +01:00
|
|
|
|
|
|
|
//cleanup
|
|
|
|
$this->_em->remove($imageEntity);
|
|
|
|
$this->_em->flush();
|
|
|
|
$this->_em->clear();
|
|
|
|
|
|
|
|
//check delete
|
2016-12-08 18:01:04 +01:00
|
|
|
$imageEntity = $this->_em->find(DDC3597Image::class, $imageEntity->getId());
|
2015-03-03 16:59:48 +01:00
|
|
|
$this->assertNull($imageEntity);
|
|
|
|
}
|
|
|
|
}
|