DDC-2704 - basic test case verifying that merged transient properties are not handled when in an inheritance
This commit is contained in:
parent
3f360d7fbc
commit
942004226c
@ -90,6 +90,28 @@ class MergeSharedEntitiesTest extends OrmFunctionalTestCase
|
|||||||
|
|
||||||
$this->assertEquals($picture->file, $picture->otherFile, 'Identical entities must remain identical');
|
$this->assertEquals($picture->file, $picture->otherFile, 'Identical entities must remain identical');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @group DDC-2704
|
||||||
|
*/
|
||||||
|
public function testMergeInheritedTransientProperties()
|
||||||
|
{
|
||||||
|
$admin1 = new MSEAdmin();
|
||||||
|
$admin2 = new MSEAdmin();
|
||||||
|
|
||||||
|
$admin1->id = 123;
|
||||||
|
$admin2->id = 123;
|
||||||
|
|
||||||
|
$this->_em->persist($admin1);
|
||||||
|
|
||||||
|
$admin2->setSession('zeh current session data');
|
||||||
|
|
||||||
|
|
||||||
|
$merged = $this->_em->merge($admin2);
|
||||||
|
|
||||||
|
$this->assertSame($admin1, $merged);
|
||||||
|
$this->assertSame($admin2->getSession(), $admin1->getSession());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @Entity */
|
/** @Entity */
|
||||||
@ -111,3 +133,26 @@ class MSEFile
|
|||||||
/** @Column(type="integer") @Id @GeneratedValue(strategy="AUTO") */
|
/** @Column(type="integer") @Id @GeneratedValue(strategy="AUTO") */
|
||||||
public $id;
|
public $id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @MappedSuperclass */
|
||||||
|
abstract class MSEUser
|
||||||
|
{
|
||||||
|
private $session; // intentionally transient property
|
||||||
|
|
||||||
|
public function getSession()
|
||||||
|
{
|
||||||
|
return $this->session;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setSession($session)
|
||||||
|
{
|
||||||
|
$this->session = $session;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @Entity */
|
||||||
|
class MSEAdmin extends MSEUser
|
||||||
|
{
|
||||||
|
/** @Column(type="integer") @Id @GeneratedValue(strategy="NONE") */
|
||||||
|
public $id;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user