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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\ORM\Tools\Pagination\Paginator;
use Doctrine\Tests\Models\CMS\CmsArticle;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
#[Group('GH7829')]
final class GH7829Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
$this->useModelSet('cms');
parent::setUp();
$article = new CmsArticle();
$article->topic = 'Skip Limit Subquery';
$article->text = 'Skip Limit Subquery if not required.';
$this->_em->persist($article);
$this->_em->flush();
$this->_em->clear();
}
public function testPaginatorWithLimitSubquery(): void
{
$this->getQueryLog()->reset()->enable();
$query = $this->_em->createQuery('SELECT a FROM Doctrine\Tests\Models\CMS\CmsArticle a');
$query->setMaxResults(1);
$paginator = new Paginator($query, true);
$paginator->setUseOutputWalkers(false);
$paginator->count();
$paginator->getIterator();
$this->assertQueryCount(3);
}
public function testPaginatorWithLimitSubquerySkipped(): void
{
$this->getQueryLog()->reset()->enable();
$query = $this->_em->createQuery('SELECT a FROM Doctrine\Tests\Models\CMS\CmsArticle a');
$paginator = new Paginator($query, true);
$paginator->setUseOutputWalkers(false);
$paginator->count();
$paginator->getIterator();
$this->assertQueryCount(2);
}
}
|