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
|
<?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;
final class GH12183Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
$this->useModelSet('cms');
parent::setUp();
$article = new CmsArticle();
$article->topic = 'Loomings';
$article->text = 'Call me Ishmael.';
$this->_em->persist($article);
$this->_em->flush();
$this->_em->clear();
}
public function testPaginatorCountWithTreeWalkerAfterQueryHasBeenExecuted(): void
{
$query = $this->_em->createQuery('SELECT a FROM Doctrine\Tests\Models\CMS\CmsArticle a');
// Paginator::count is right when the query has not yet been executed
$paginator = new Paginator($query);
$paginator->setUseOutputWalkers(false);
self::assertSame(1, $paginator->count());
// Execute the query
$result = $query->getResult();
self::assertCount(1, $result);
$paginator = new Paginator($query);
$paginator->setUseOutputWalkers(false);
self::assertSame(1, $paginator->count());
}
}
|