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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\Tests\Models\Company\CompanyEmployee;
use Doctrine\Tests\Models\Company\CompanyPerson;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
#[Group('DDC-1995')]
class DDC1995Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
$this->useModelSet('company');
parent::setUp();
}
public function testIssue(): void
{
$person = new CompanyPerson();
$person->setName('p1');
$employee = new CompanyEmployee();
$employee->setName('Foo');
$employee->setDepartment('bar');
$employee->setSalary(1000);
$this->_em->persist($person);
$this->_em->persist($employee);
$this->_em->flush();
$this->_em->clear();
$dql = 'SELECT u FROM Doctrine\Tests\Models\Company\CompanyPerson u WHERE u INSTANCE OF ?1';
$class = $this->_em->getClassMetadata(CompanyEmployee::class);
$result = $this->_em->createQuery($dql)
->setParameter(1, $class)
->getResult();
self::assertCount(1, $result);
self::assertInstanceOf(CompanyEmployee::class, $result[0]);
}
public function testQueryCache(): void
{
$person = new CompanyPerson();
$person->setName('p1');
$employee = new CompanyEmployee();
$employee->setName('Foo');
$employee->setDepartment('bar');
$employee->setSalary(1000);
$this->_em->persist($person);
$this->_em->persist($employee);
$this->_em->flush();
$this->_em->clear();
$dql = 'SELECT u FROM Doctrine\Tests\Models\Company\CompanyPerson u WHERE u INSTANCE OF :type';
$class1 = $this->_em->getClassMetadata(CompanyEmployee::class);
$class2 = $this->_em->getClassMetadata(CompanyPerson::class);
$result1 = $this->_em->createQuery($dql)
->setParameter('type', $class1)
->useQueryCache(true)
->getResult();
$result2 = $this->_em->createQuery($dql)
->setParameter('type', $class2)
->useQueryCache(true)
->getResult();
self::assertCount(1, $result1);
self::assertCount(2, $result2);
self::assertInstanceOf(CompanyEmployee::class, $result1[0]);
self::assertContainsOnlyInstancesOf(CompanyPerson::class, $result2);
}
}
|