1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\Tests\Models\CMS\CmsGroup;
use Doctrine\Tests\Models\CMS\CmsUser;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
#[Group('DDC-1643')]
class DDC1643Test extends OrmFunctionalTestCase
{
private CmsUser|null $user1;
private CmsUser|null $user2;
protected function setUp(): void
{
$this->useModelSet('cms');
parent::setUp();
$user1 = new CmsUser();
$user1->username = 'beberlei';
$user1->name = 'Benjamin';
$user1->status = 'active';
$group1 = new CmsGroup();
$group1->name = 'test';
$group2 = new CmsGroup();
$group2->name = 'test';
$user1->addGroup($group1);
$user1->addGroup($group2);
$user2 = new CmsUser();
$user2->username = 'romanb';
$user2->name = 'Roman';
$user2->status = 'active';
$this->_em->persist($user1);
$this->_em->persist($user2);
$this->_em->persist($group1);
$this->_em->persist($group2);
$this->_em->flush();
$this->_em->clear();
$this->user1 = $this->_em->find($user1::class, $user1->id);
$this->user2 = $this->_em->find($user1::class, $user2->id);
}
public function testClonePersistentCollectionAndReuse(): void
{
$user1 = $this->user1;
$user1->groups = clone $user1->groups;
$this->_em->flush();
$this->_em->clear();
$user1 = $this->_em->find($user1::class, $user1->id);
self::assertCount(2, $user1->groups);
}
public function testClonePersistentCollectionAndShare(): void
{
$user1 = $this->user1;
$user2 = $this->user2;
$user2->groups = clone $user1->groups;
$this->_em->flush();
$this->_em->clear();
$user1 = $this->_em->find($user1::class, $user1->id);
$user2 = $this->_em->find($user1::class, $user2->id);
self::assertCount(2, $user1->groups);
self::assertCount(2, $user2->groups);
}
public function testCloneThenDirtyPersistentCollection(): void
{
$user1 = $this->user1;
$user2 = $this->user2;
$group3 = new CmsGroup();
$group3->name = 'test';
$user2->groups = clone $user1->groups;
$user2->groups->add($group3);
$this->_em->persist($group3);
$this->_em->flush();
$this->_em->clear();
$user1 = $this->_em->find($user1::class, $user1->id);
$user2 = $this->_em->find($user1::class, $user2->id);
self::assertCount(3, $user2->groups);
self::assertCount(2, $user1->groups);
}
public function testNotCloneAndPassAroundFlush(): void
{
$user1 = $this->user1;
$user2 = $this->user2;
$group3 = new CmsGroup();
$group3->name = 'test';
$user2->groups = $user1->groups;
$user2->groups->add($group3);
self::assertCount(1, $user1->groups->getInsertDiff());
$this->_em->persist($group3);
$this->_em->flush();
$this->_em->clear();
$user1 = $this->_em->find($user1::class, $user1->id);
$user2 = $this->_em->find($user1::class, $user2->id);
self::assertCount(3, $user2->groups);
self::assertCount(3, $user1->groups);
}
}
|