Adding a failing test case for parameter binding using metadata with INSTANCE OF
This commit is contained in:
parent
2fd8752818
commit
b1f7c59ed5
@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
namespace Doctrine\Tests\ORM\Functional\Ticket;
|
||||
|
||||
use Doctrine\Tests\OrmFunctionalTestCase;
|
||||
|
||||
class Ticket4646InstanceOfParametricTest extends OrmFunctionalTestCase
|
||||
{
|
||||
protected function setUp()
|
||||
{
|
||||
parent::setUp();
|
||||
$this->_schemaTool->createSchema([
|
||||
$this->_em->getClassMetadata(PersonTicket4646Parametric::class),
|
||||
$this->_em->getClassMetadata(EmployeeTicket4646Parametric::class),
|
||||
]);
|
||||
}
|
||||
|
||||
public function testInstanceOf()
|
||||
{
|
||||
$this->_em->persist(new PersonTicket4646Parametric());
|
||||
$this->_em->persist(new EmployeeTicket4646Parametric());
|
||||
$this->_em->flush();
|
||||
$dql = 'SELECT p FROM Doctrine\Tests\ORM\Functional\Ticket\PersonTicket4646Parametric p
|
||||
WHERE p INSTANCE OF :parameter';
|
||||
$query = $this->_em->createQuery($dql);
|
||||
$query->setParameter(
|
||||
'parameter',
|
||||
$this->_em->getClassMetadata(PersonTicket4646Parametric::class)
|
||||
);
|
||||
$result = $query->getResult();
|
||||
$this->assertCount(2, $result);
|
||||
$this->assertContainsOnlyInstancesOf(PersonTicket4646Parametric::class, $result);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @Entity()
|
||||
* @Table(name="instance_of_parametric_person")
|
||||
* @InheritanceType(value="JOINED")
|
||||
* @DiscriminatorColumn(name="kind", type="string")
|
||||
* @DiscriminatorMap(value={
|
||||
* "person": "Doctrine\Tests\ORM\Functional\Ticket\PersonTicket4646Parametric",
|
||||
* "employee": "Doctrine\Tests\ORM\Functional\Ticket\EmployeeTicket4646Parametric"
|
||||
* })
|
||||
*/
|
||||
class PersonTicket4646Parametric
|
||||
{
|
||||
/**
|
||||
* @Id()
|
||||
* @GeneratedValue()
|
||||
* @Column(type="integer")
|
||||
*/
|
||||
private $id;
|
||||
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @Entity()
|
||||
* @Table(name="instance_of_parametric_employee")
|
||||
*/
|
||||
class EmployeeTicket4646Parametric extends PersonTicket4646Parametric
|
||||
{
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user