Merge branch 'tests/lazy-collection-tests'
Tests for doctrine/doctrine2@d30e3ab43c
This commit is contained in:
commit
04aea73a85
@ -49,7 +49,7 @@ class LazyCriteriaCollection extends AbstractLazyCollection implements Selectabl
|
||||
protected $criteria;
|
||||
|
||||
/**
|
||||
* @var integer
|
||||
* @var integer|null
|
||||
*/
|
||||
private $count;
|
||||
|
||||
|
106
tests/Doctrine/Tests/ORM/LazyCriteriaCollectionTest.php
Normal file
106
tests/Doctrine/Tests/ORM/LazyCriteriaCollectionTest.php
Normal file
@ -0,0 +1,106 @@
|
||||
<?php
|
||||
|
||||
namespace Doctrine\Tests\ORM;
|
||||
|
||||
use Doctrine\Common\Collections\Criteria;
|
||||
use Doctrine\ORM\LazyCriteriaCollection;
|
||||
use Doctrine\Tests\Mocks\ConnectionMock;
|
||||
use stdClass;
|
||||
use PHPUnit_Framework_TestCase;
|
||||
|
||||
/**
|
||||
* @author Marco Pivetta <ocramius@gmail.com>
|
||||
*
|
||||
* @covers \Doctrine\ORM\LazyCriteriaCollection
|
||||
*/
|
||||
class LazyCriteriaCollectionTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
/**
|
||||
* @var \Doctrine\ORM\Persisters\EntityPersister|\PHPUnit_Framework_MockObject_MockObject
|
||||
*/
|
||||
private $persister;
|
||||
|
||||
/**
|
||||
* @var Criteria
|
||||
*/
|
||||
private $criteria;
|
||||
|
||||
/**
|
||||
* @var LazyCriteriaCollection
|
||||
*/
|
||||
private $lazyCriteriaCollection;
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
protected function setUp()
|
||||
{
|
||||
$this->persister = $this->getMock('Doctrine\ORM\Persisters\EntityPersister');
|
||||
$this->criteria = new Criteria();
|
||||
$this->lazyCriteriaCollection = new LazyCriteriaCollection($this->persister, $this->criteria);
|
||||
}
|
||||
|
||||
public function testCountIsCached()
|
||||
{
|
||||
$this->persister->expects($this->once())->method('count')->with($this->criteria)->will($this->returnValue(10));
|
||||
|
||||
$this->assertSame(10, $this->lazyCriteriaCollection->count());
|
||||
$this->assertSame(10, $this->lazyCriteriaCollection->count());
|
||||
$this->assertSame(10, $this->lazyCriteriaCollection->count());
|
||||
}
|
||||
|
||||
public function testCountIsCachedEvenWithZeroResult()
|
||||
{
|
||||
$this->persister->expects($this->once())->method('count')->with($this->criteria)->will($this->returnValue(0));
|
||||
|
||||
$this->assertSame(0, $this->lazyCriteriaCollection->count());
|
||||
$this->assertSame(0, $this->lazyCriteriaCollection->count());
|
||||
$this->assertSame(0, $this->lazyCriteriaCollection->count());
|
||||
}
|
||||
|
||||
public function testCountUsesWrappedCollectionWhenInitialized()
|
||||
{
|
||||
$this
|
||||
->persister
|
||||
->expects($this->once())
|
||||
->method('loadCriteria')
|
||||
->with($this->criteria)
|
||||
->will($this->returnValue(array('foo', 'bar', 'baz')));
|
||||
|
||||
// should never call the persister's count
|
||||
$this->persister->expects($this->never())->method('count');
|
||||
|
||||
$this->assertSame(array('foo', 'bar', 'baz'), $this->lazyCriteriaCollection->toArray());
|
||||
|
||||
$this->assertSame(3, $this->lazyCriteriaCollection->count());
|
||||
}
|
||||
|
||||
public function testMatchingUsesThePersisterOnlyOnce()
|
||||
{
|
||||
$foo = new stdClass();
|
||||
$bar = new stdClass();
|
||||
$baz = new stdClass();
|
||||
|
||||
$foo->val = 'foo';
|
||||
$bar->val = 'bar';
|
||||
$baz->val = 'baz';
|
||||
|
||||
$this
|
||||
->persister
|
||||
->expects($this->once())
|
||||
->method('loadCriteria')
|
||||
->with($this->criteria)
|
||||
->will($this->returnValue(array($foo, $bar, $baz)));
|
||||
|
||||
$criteria = new Criteria();
|
||||
|
||||
$criteria->andWhere($criteria->expr()->eq('val', 'foo'));
|
||||
|
||||
$filtered = $this->lazyCriteriaCollection->matching($criteria);
|
||||
|
||||
$this->assertInstanceOf('Doctrine\Common\Collections\Collection', $filtered);
|
||||
$this->assertEquals(array($foo), $filtered->toArray());
|
||||
|
||||
$this->assertEquals(array($foo), $this->lazyCriteriaCollection->matching($criteria)->toArray());
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user