File: GH12183Test.php

package info (click to toggle)
doctrine 3.5.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,536 kB
  • sloc: php: 109,324; xml: 1,340; makefile: 35
file content (46 lines) | stat: -rw-r--r-- 1,270 bytes parent folder | download
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());
    }
}