From dbd0697c2ced66adc6e4319ac8de7e8e466cc2ab Mon Sep 17 00:00:00 2001 From: "Fabio B. Silva" Date: Mon, 30 Jul 2012 22:35:41 -0300 Subject: [PATCH] test @PostLoad --- .../EntityListenersDispatcherTest.php | 27 ++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/EntityListenersDispatcherTest.php b/tests/Doctrine/Tests/ORM/Functional/EntityListenersDispatcherTest.php index b60646612..5127ff411 100644 --- a/tests/Doctrine/Tests/ORM/Functional/EntityListenersDispatcherTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/EntityListenersDispatcherTest.php @@ -47,7 +47,32 @@ class EntityListenersDispatcherTest extends \Doctrine\Tests\OrmFunctionalTestCas public function testPostLoadListeners() { - $this->markTestIncomplete(); + $fix = new CompanyFixContract(); + $fix->setFixPrice(2000); + + $this->_em->persist($fix); + $this->_em->flush(); + $this->_em->clear(); + + ContractSubscriber::$postLoadCalls = array(); + + $dql = "SELECT f FROM Doctrine\Tests\Models\Company\CompanyFixContract f WHERE f.id = ?1"; + $fix = $this->_em->createQuery($dql)->setParameter(1, $fix->getId())->getSingleResult(); + + $this->assertCount(1,ContractSubscriber::$instances); + $this->assertCount(1,ContractSubscriber::$postLoadCalls); + + $this->assertSame($fix, ContractSubscriber::$postLoadCalls[0][0]); + + $this->assertInstanceOf( + 'Doctrine\Tests\Models\Company\CompanyFixContract', + ContractSubscriber::$postLoadCalls[0][0] + ); + + $this->assertInstanceOf( + 'Doctrine\ORM\Event\LifecycleEventArgs', + ContractSubscriber::$postLoadCalls[0][1] + ); } public function testPrePersistListeners()