2012-11-25 22:06:35 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\ORM\Functional\Ticket;
|
|
|
|
|
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
|
|
use Doctrine\ORM\PersistentCollection;
|
|
|
|
use Doctrine\Tests\Models\ECommerce\ECommerceCategory;
|
|
|
|
use Doctrine\Tests\Models\ECommerce\ECommerceProduct;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-2074
|
|
|
|
*/
|
|
|
|
class DDC2074Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
|
|
|
{
|
2014-02-09 17:27:23 +04:00
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
$this->useModelSet('ecommerce');
|
|
|
|
parent::setUp();
|
|
|
|
}
|
|
|
|
|
2012-11-25 22:06:35 +04:00
|
|
|
public function testShouldNotScheduleDeletionOnClonedInstances()
|
|
|
|
{
|
|
|
|
$class = $this->_em->getClassMetadata('Doctrine\Tests\Models\ECommerce\ECommerceProduct');
|
|
|
|
$product = new ECommerceProduct();
|
|
|
|
$category = new ECommerceCategory();
|
|
|
|
$collection = new PersistentCollection($this->_em, $class, new ArrayCollection(array($category)));
|
|
|
|
$collection->setOwner($product, $class->associationMappings['categories']);
|
|
|
|
|
|
|
|
$uow = $this->_em->getUnitOfWork();
|
|
|
|
$clonedCollection = clone $collection;
|
|
|
|
$clonedCollection->clear();
|
|
|
|
|
|
|
|
$this->assertEquals(0, count($uow->getScheduledCollectionDeletions()));
|
|
|
|
}
|
2014-02-09 17:27:23 +04:00
|
|
|
|
|
|
|
public function testSavingClonedPersistentCollection()
|
|
|
|
{
|
|
|
|
$product = new ECommerceProduct();
|
|
|
|
$category = new ECommerceCategory();
|
|
|
|
$category->setName('foo');
|
|
|
|
$product->addCategory($category);
|
|
|
|
|
|
|
|
$this->_em->persist($product);
|
|
|
|
$this->_em->persist($category);
|
|
|
|
$this->_em->flush();
|
|
|
|
|
|
|
|
$newProduct = clone $product;
|
|
|
|
|
|
|
|
$this->_em->persist($newProduct);
|
|
|
|
$this->_em->flush();
|
|
|
|
$this->_em->clear();
|
|
|
|
|
|
|
|
$product1 = $this->_em->find('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $product->getId());
|
|
|
|
$product2 = $this->_em->find('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $newProduct->getId());
|
|
|
|
|
|
|
|
$this->assertCount(1, $product1->getCategories());
|
|
|
|
$this->assertCount(1, $product2->getCategories());
|
|
|
|
|
|
|
|
$this->assertSame($product1->getCategories()->get(0), $product2->getCategories()->get(0));
|
|
|
|
}
|
|
|
|
}
|