File: GH2947Test.php

package info (click to toggle)
doctrine 3.5.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,556 kB
  • sloc: php: 108,620; xml: 1,340; makefile: 35; sh: 14
file content (97 lines) | stat: -rw-r--r-- 2,621 bytes parent folder | download | duplicates (2)
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
<?php

declare(strict_types=1);

namespace Doctrine\Tests\ORM\Functional\Ticket;

use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\GeneratedValue;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\Table;
use Doctrine\ORM\Query;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
use Stringable;
use Symfony\Component\Cache\Adapter\ArrayAdapter;

#[Group('GH-2947')]
class GH2947Test extends OrmFunctionalTestCase
{
    protected function setUp(): void
    {
        $this->resultCache = new ArrayAdapter();

        parent::setUp();

        $this->createSchemaForModels(GH2947Car::class);
    }

    public function testIssue(): void
    {
        $this->createData();
        $this->getQueryLog()->reset()->enable();

        $query = $this->createQuery();
        self::assertEquals('BMW', (string) $query->getSingleResult());
        $this->assertQueryCount(1);

        $this->updateData();
        self::assertEquals('BMW', (string) $query->getSingleResult());
        $this->assertQueryCount(2);

        $query->expireResultCache(true);
        self::assertEquals('Dacia', (string) $query->getSingleResult());
        $this->assertQueryCount(3);

        $query->expireResultCache(false);
        self::assertEquals('Dacia', (string) $query->getSingleResult());
        $this->assertQueryCount(3);
    }

    private function createQuery(): Query
    {
        return $this->_em->createQueryBuilder()
                         ->select('car')
                         ->from(GH2947Car::class, 'car')
                         ->getQuery()
                         ->enableResultCache(3600, 'foo-cache-id');
    }

    private function createData(): void
    {
        $this->_em->persist(new GH2947Car('BMW'));
        $this->_em->flush();
        $this->_em->clear();
    }

    private function updateData(): void
    {
        $this->_em->createQueryBuilder()
                  ->update(GH2947Car::class, 'car')
                  ->set('car.brand', ':newBrand')
                  ->where('car.brand = :oldBrand')
                  ->setParameter('newBrand', 'Dacia')
                  ->setParameter('oldBrand', 'BMW')
                  ->getQuery()
                  ->execute();
    }
}

#[Table(name: 'GH2947_car')]
#[Entity]
class GH2947Car implements Stringable
{
    public function __construct(
        #[Id]
        #[Column(type: 'string', length: 25)]
        #[GeneratedValue(strategy: 'NONE')]
        public string $brand,
    ) {
    }

    public function __toString(): string
    {
        return $this->brand;
    }
}