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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional;
use Doctrine\DBAL\Types\Type as DBALType;
use Doctrine\Tests\DbalTypes\NegativeToPositiveType;
use Doctrine\Tests\DbalTypes\UpperCaseStringType;
use Doctrine\Tests\Models\CustomType\CustomTypeChild;
use Doctrine\Tests\Models\CustomType\CustomTypeParent;
use Doctrine\Tests\Models\CustomType\CustomTypeUpperCase;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
class TypeValueSqlTest extends OrmFunctionalTestCase
{
protected function setUp(): void
{
if (DBALType::hasType(UpperCaseStringType::NAME)) {
DBALType::overrideType(UpperCaseStringType::NAME, UpperCaseStringType::class);
} else {
DBALType::addType(UpperCaseStringType::NAME, UpperCaseStringType::class);
}
if (DBALType::hasType(NegativeToPositiveType::NAME)) {
DBALType::overrideType(NegativeToPositiveType::NAME, NegativeToPositiveType::class);
} else {
DBALType::addType(NegativeToPositiveType::NAME, NegativeToPositiveType::class);
}
$this->useModelSet('customtype');
parent::setUp();
}
public function testUpperCaseStringType(): void
{
$entity = new CustomTypeUpperCase();
$entity->lowerCaseString = 'foo';
$this->_em->persist($entity);
$this->_em->flush();
$id = $entity->id;
$this->_em->clear();
$entity = $this->_em->find(CustomTypeUpperCase::class, $id);
self::assertEquals('foo', $entity->lowerCaseString, 'Entity holds lowercase string');
self::assertEquals('FOO', $this->_em->getConnection()->fetchOne('select lowerCaseString from customtype_uppercases where id=' . $entity->id . ''), 'Database holds uppercase string');
}
#[Group('DDC-1642')]
public function testUpperCaseStringTypeWhenColumnNameIsDefined(): void
{
$entity = new CustomTypeUpperCase();
$entity->lowerCaseString = 'Some Value';
$entity->namedLowerCaseString = 'foo';
$this->_em->persist($entity);
$this->_em->flush();
$id = $entity->id;
$this->_em->clear();
$entity = $this->_em->find(CustomTypeUpperCase::class, $id);
self::assertEquals('foo', $entity->namedLowerCaseString, 'Entity holds lowercase string');
self::assertEquals('FOO', $this->_em->getConnection()->fetchOne('select named_lower_case_string from customtype_uppercases where id=' . $entity->id . ''), 'Database holds uppercase string');
$entity->namedLowerCaseString = 'bar';
$this->_em->persist($entity);
$this->_em->flush();
$id = $entity->id;
$this->_em->clear();
$entity = $this->_em->find(CustomTypeUpperCase::class, $id);
self::assertEquals('bar', $entity->namedLowerCaseString, 'Entity holds lowercase string');
self::assertEquals('BAR', $this->_em->getConnection()->fetchOne('select named_lower_case_string from customtype_uppercases where id=' . $entity->id . ''), 'Database holds uppercase string');
}
public function testTypeValueSqlWithAssociations(): void
{
$parent = new CustomTypeParent();
$parent->customInteger = -1;
$parent->child = new CustomTypeChild();
$friend1 = new CustomTypeParent();
$friend2 = new CustomTypeParent();
$parent->addMyFriend($friend1);
$parent->addMyFriend($friend2);
$this->_em->persist($parent);
$this->_em->persist($friend1);
$this->_em->persist($friend2);
$this->_em->flush();
$parentId = $parent->id;
$this->_em->clear();
$entity = $this->_em->find(CustomTypeParent::class, $parentId);
self::assertTrue($entity->customInteger < 0, 'Fetched customInteger negative');
self::assertEquals(1, $this->_em->getConnection()->fetchOne('select customInteger from customtype_parents where id=' . $entity->id . ''), 'Database has stored customInteger positive');
self::assertNotNull($parent->child, 'Child attached');
self::assertCount(2, $entity->getMyFriends(), '2 friends attached');
}
public function testSelectDQL(): void
{
$parent = new CustomTypeParent();
$parent->customInteger = -1;
$parent->child = new CustomTypeChild();
$this->_em->persist($parent);
$this->_em->flush();
$parentId = $parent->id;
$this->_em->clear();
$query = $this->_em->createQuery('SELECT p, p.customInteger, c from Doctrine\Tests\Models\CustomType\CustomTypeParent p JOIN p.child c where p.id = ' . $parentId);
$result = $query->getResult();
self::assertCount(1, $result);
self::assertInstanceOf(CustomTypeParent::class, $result[0][0]);
self::assertEquals(-1, $result[0][0]->customInteger);
self::assertEquals(-1, $result[0]['customInteger']);
self::assertEquals('foo', $result[0][0]->child->lowerCaseString);
}
}
|