-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Infer type from field instead of column #9153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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); | ||
8000 |
|
|
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; | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.