-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9153 from armenio/2.10.x
Infer type from field instead of column
- Loading branch information
Showing
2 changed files
with
218 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
217 changes: 217 additions & 0 deletions
217
tests/Doctrine/Tests/ORM/Functional/Ticket/GH9109Test.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,217 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\ORM\Functional\Ticket; | ||
|
||
use Doctrine\Common\Collections\ArrayCollection; | ||
use Doctrine\Common\Collections\Collection; | ||
use Doctrine\Common\Collections\Criteria; | ||
use Doctrine\ORM\Mapping\Column; | ||
use Doctrine\ORM\Mapping\Entity; | ||
use Doctrine\ORM\Mapping\GeneratedValue; | ||
use Doctrine\ORM\Mapping\Id; | ||
use Doctrine\ORM\Mapping\ManyToMany; | ||
use Doctrine\Tests\OrmFunctionalTestCase; | ||
|
||
/** | ||
* @group GH-9109 | ||
*/ | ||
class GH9109Test extends OrmFunctionalTestCase | ||
{ | ||
protected function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->_schemaTool->createSchema( | ||
[ | ||
$this->_em->getClassMetadata(GH9109User::class), | ||
$this->_em->getClassMetadata(GH9109Product::class), | ||
] | ||
); | ||
} | ||
|
||
protected function tearDown(): void | ||
{ | ||
$this->_schemaTool->dropSchema( | ||
[ | ||
$this->_em->getClassMetadata(GH9109User::class), | ||
$this->_em->getClassMetadata(GH9109Product::class), | ||
] | ||
); | ||
|
||
parent::tearDown(); | ||
} | ||
|
||
public function testIssue(): void | ||
{ | ||
$userFirstName = 'GH9109Test'; | ||
$userLastName = 'UserGH9109'; | ||
$productTitle = 'Test product'; | ||
|
||
$userRepository = $this->_em->getRepository(GH9109User::class); | ||
|
||
$user = new GH9109User(); | ||
$user->setFirstName($userFirstName); | ||
$user->setLastName($userLastName); | ||
|
||
$product = new GH9109Product(); | ||
$product->setTitle($productTitle); | ||
|
||
$this->_em->persist($user); | ||
$this->_em->persist($product); | ||
$this->_em->flush(); | ||
|
||
$product->addBuyer($user); | ||
|
||
$this->_em->persist($product); | ||
$this->_em->flush(); | ||
|
||
$this->_em->clear(); | ||
|
||
$persistedProduct = $this->_em->find(GH9109Product::class, $product->getId()); | ||
|
||
// assert Product was persisted | ||
self::assertInstanceOf(GH9109Product::class, $persistedProduct); | ||
self::assertEquals($productTitle, $persistedProduct->getTitle()); | ||
|
||
// assert Product has a Buyer | ||
$count = $persistedProduct->getBuyers()->count(); | ||
self::assertEquals(1, $count); | ||
|
||
// assert NOT QUOTED will WORK with findOneBy | ||
$user = $userRepository->findOneBy(['lastName' => $userLastName]); | ||
self::assertInstanceOf(GH9109User::class, $user); | ||
self::assertEquals($userLastName, $user->getLastName()); | ||
|
||
// assert NOT QUOTED will WORK with Criteria | ||
$criteria = Criteria::create(); | ||
$criteria->where($criteria->expr()->eq('lastName', $userLastName)); | ||
$user = $persistedProduct->getBuyers()->matching($criteria)->first(); | ||
self::assertInstanceOf(GH9109User::class, $user); | ||
self::assertEquals($userLastName, $user->getLastName()); | ||
|
||
// assert QUOTED will WORK with findOneBy | ||
$user = $userRepository->findOneBy(['firstName' => $userFirstName]); | ||
self::assertInstanceOf(GH9109User::class, $user); | ||
self::assertEquals($userFirstName, $user->getFirstName()); | ||
|
||
// assert QUOTED will WORK with Criteria | ||
$criteria = Criteria::create(); | ||
$criteria->where($criteria->expr()->eq('firstName', $userFirstName)); | ||
$user = $persistedProduct->getBuyers()->matching($criteria)->first(); | ||
self::assertInstanceOf(GH9109User::class, $user); | ||
self::assertEquals($userFirstName, $user->getFirstName()); | ||
} | ||
} | ||
|
||
/** | ||
* @Entity | ||
*/ | ||
class GH9109Product | ||
{ | ||
/** | ||
* @var int $id | ||
* @Column(name="`id`", type="integer") | ||
* @Id | ||
* @GeneratedValue(strategy="AUTO") | ||
*/ | ||
private $id; | ||
|
||
/** | ||
* @var string $title | ||
* @Column(name="`title`", type="string", length=255) | ||
*/ | ||
private $title; | ||
|
||
/** | ||
* @var Collection|GH9109User[] | ||
* @psalm-var Collection<int, GH9109User> | ||
* @ManyToMany(targetEntity="GH9109User") | ||
*/ | ||
private $buyers; | ||
|
||
public function __construct() | ||
{ | ||
$this->buyers = new ArrayCollection(); | ||
} | ||
|
||
public function getId(): int | ||
{ | ||
return $this->id; | ||
} | ||
|
||
public function setTitle(string $title): void | ||
{ | ||
$this->title = $title; | ||
} | ||
|
||
public function getTitle(): string | ||
{ | ||
return $this->title; | ||
} | ||
|
||
/** | ||
* @psalm-return Collection<int, GH9109User> | ||
*/ | ||
public function getBuyers(): Collection | ||
{ | ||
return $this->buyers; | ||
} | ||
|
||
public function addBuyer(GH9109User $buyer): void | ||
{ | ||
$this->buyers[] = $buyer; | ||
} | ||
} | ||
|
||
/** | ||
* @Entity | ||
*/ | ||
class GH9109User | ||
{ | ||
/** | ||
* @var int | ||
* @Column(name="`id`", type="integer") | ||
* @Id | ||
* @GeneratedValue(strategy="AUTO") | ||
*/ | ||
private $id; | ||
|
||
/** | ||
* @var string | ||
* @Column(name="`first_name`", type="string") | ||
*/ | ||
private $firstName; | ||
|
||
/** | ||
* @var string | ||
* @Column(name="last_name", type="string") | ||
*/ | ||
private $lastName; | ||
|
||
public function getId(): int | ||
{ | ||
return $this->id; | ||
} | ||
|
||
public function getFirstName(): string | ||
{ | ||
return $this->firstName; | ||
} | ||
|
||
public function setFirstName(string $firstName): void | ||
{ | ||
$this->firstName = $firstName; | ||
} | ||
|
||
public function getLastName(): string | ||
{ | ||
return $this->lastName; | ||
} | ||
|
||
public function setLastName(string $lastName): void | ||
{ | ||
$this->lastName = $lastName; | ||
} | ||
} |