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 98 99
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Types\StringType;
use Doctrine\DBAL\Types\Type;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\Id;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
use Stringable;
#[Group('DDC-1998')]
class DDC1998Test extends OrmFunctionalTestCase
{
public function testSqlConversionAsIdentifier(): void
{
Type::addType('ddc1998', DDC1998Type::class);
$this->createSchemaForModels(DDC1998Entity::class);
$entity = new DDC1998Entity();
$entity->id = new DDC1998Id('foo');
$this->_em->persist($entity);
$this->_em->flush();
$entity->num++;
$this->_em->flush();
$this->_em->remove($entity);
$this->_em->flush();
$this->_em->clear();
$found = $this->_em->find(DDC1998Entity::class, $entity->id);
self::assertNull($found);
$found = $this->_em->find(DDC1998Entity::class, 'foo');
self::assertNull($found);
self::assertCount(0, $this->_em->getRepository(DDC1998Entity::class)->findAll());
}
}
#[Entity]
class DDC1998Entity
{
/** @var string */
#[Id]
#[Column(type: 'ddc1998', length: 255)]
public $id;
/** @var int */
#[Column(type: 'integer')]
public $num = 0;
}
class DDC1998Type extends StringType
{
public const NAME = 'ddc1998';
/**
* {@inheritDoc}
*/
public function convertToDatabaseValue($value, AbstractPlatform $platform): string
{
return (string) $value;
}
/**
* {@inheritDoc}
*/
public function convertToPHPValue($value, AbstractPlatform $platform): DDC1998Id
{
return new DDC1998Id($value);
}
public function getName(): string
{
return self::NAME;
}
}
class DDC1998Id implements Stringable
{
public function __construct(private string $val)
{
}
public function __toString(): string
{
return $this->val;
}
}
|