Skip to content

Commit

Permalink
DDC-2173 - Add Test for new OnFlush or PreFlush behavior and update U…
Browse files Browse the repository at this point in the history
…PGRADE.md
  • Loading branch information
beberlei committed Jan 6, 2013
1 parent 1e66913 commit 512a001
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
8 changes: 8 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Upgrade to 2.4

## OnFlush and PreFlush event always called

Before 2.4 the preFlush and onFlush events were only called when there were
actually entities that changed. Now these events are called no matter if there
are entities in the UoW or changes are found.

# Upgrade to 2.3

## EntityManager#find() not calls EntityRepository#find() anymore
Expand Down
34 changes: 34 additions & 0 deletions tests/Doctrine/Tests/ORM/Functional/FlushEventTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,26 @@ public function testPersistNewEntitiesOnPreFlush()
//echo "SECOND FLUSH";
//$this->_em->flush();
}

/**
* @group DDC-2173
*/
public function testPreAndOnFlushCalledAlways()
{
$listener = new OnFlushCalledListener();
$this->_em->getEventManager()->addEventListener(Events::onFlush, $listener);
$this->_em->getEventManager()->addEventListener(Events::preFlush, $listener);

$this->_em->flush();

$this->assertEquals(1, $listener->preFlush);
$this->assertEquals(1, $listener->onFlush);

$this->_em->flush();

$this->assertEquals(2, $listener->preFlush);
$this->assertEquals(2, $listener->onFlush);
}
}

class OnFlushListener
Expand Down Expand Up @@ -91,4 +111,18 @@ public function onFlush(OnFlushEventArgs $args)
}
}

class OnFlushCalledListener
{
public $preFlush = 0;
public $onFlush = 0;

public function preFlush($args)
{
$this->preFlush++;
}

public function onFlush($args)
{
$this->onFlush++;
}
}

0 comments on commit 512a001

Please sign in to comment.