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 126 127 128
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM;
use Doctrine\Common\Collections\Collection;
use Doctrine\Common\Collections\Criteria;
use Doctrine\ORM\LazyCriteriaCollection;
use Doctrine\ORM\Persisters\Entity\EntityPersister;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use stdClass;
/** @covers \Doctrine\ORM\LazyCriteriaCollection */
class LazyCriteriaCollectionTest extends TestCase
{
/** @var EntityPersister&MockObject */
private $persister;
/** @var Criteria */
private $criteria;
/** @var LazyCriteriaCollection */
private $lazyCriteriaCollection;
protected function setUp(): void
{
$this->persister = $this->createMock(EntityPersister::class);
$this->criteria = new Criteria();
$this->lazyCriteriaCollection = new LazyCriteriaCollection($this->persister, $this->criteria);
}
public function testCountIsCached(): void
{
$this->persister->expects(self::once())->method('count')->with($this->criteria)->will(self::returnValue(10));
self::assertSame(10, $this->lazyCriteriaCollection->count());
self::assertSame(10, $this->lazyCriteriaCollection->count());
self::assertSame(10, $this->lazyCriteriaCollection->count());
}
public function testCountIsCachedEvenWithZeroResult(): void
{
$this->persister->expects(self::once())->method('count')->with($this->criteria)->will(self::returnValue(0));
self::assertSame(0, $this->lazyCriteriaCollection->count());
self::assertSame(0, $this->lazyCriteriaCollection->count());
self::assertSame(0, $this->lazyCriteriaCollection->count());
}
public function testCountUsesWrappedCollectionWhenInitialized(): void
{
$this
->persister
->expects(self::once())
->method('loadCriteria')
->with($this->criteria)
->will(self::returnValue(['foo', 'bar', 'baz']));
// should never call the persister's count
$this->persister->expects(self::never())->method('count');
self::assertSame(['foo', 'bar', 'baz'], $this->lazyCriteriaCollection->toArray());
self::assertSame(3, $this->lazyCriteriaCollection->count());
}
public function testMatchingUsesThePersisterOnlyOnce(): void
{
$foo = new stdClass();
$bar = new stdClass();
$baz = new stdClass();
$foo->val = 'foo';
$bar->val = 'bar';
$baz->val = 'baz';
$this
->persister
->expects(self::once())
->method('loadCriteria')
->with($this->criteria)
->will(self::returnValue([$foo, $bar, $baz]));
$criteria = new Criteria();
$criteria->andWhere($criteria->expr()->eq('val', 'foo'));
$filtered = $this->lazyCriteriaCollection->matching($criteria);
self::assertInstanceOf(Collection::class, $filtered);
self::assertEquals([$foo], $filtered->toArray());
self::assertEquals([$foo], $this->lazyCriteriaCollection->matching($criteria)->toArray());
}
public function testIsEmptyUsesCountWhenNotInitialized(): void
{
$this->persister->expects(self::once())->method('count')->with($this->criteria)->will(self::returnValue(0));
self::assertTrue($this->lazyCriteriaCollection->isEmpty());
}
public function testIsEmptyIsFalseIfCountIsNotZero(): void
{
$this->persister->expects(self::once())->method('count')->with($this->criteria)->will(self::returnValue(1));
self::assertFalse($this->lazyCriteriaCollection->isEmpty());
}
public function testIsEmptyUsesWrappedCollectionWhenInitialized(): void
{
$this
->persister
->expects(self::once())
->method('loadCriteria')
->with($this->criteria)
->will(self::returnValue(['foo', 'bar', 'baz']));
// should never call the persister's count
$this->persister->expects(self::never())->method('count');
self::assertSame(['foo', 'bar', 'baz'], $this->lazyCriteriaCollection->toArray());
self::assertFalse($this->lazyCriteriaCollection->isEmpty());
}
}
|