-
Notifications
You must be signed in to change notification settings - Fork 102
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
Support ORM's embeddables #108
Open
malarzm
wants to merge
2
commits into
phpstan:1.3.x
Choose a base branch
from
malarzm:embeddables
base: 1.3.x
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 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
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,87 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace PHPStan\Rules\Doctrine\ORM; | ||
|
||
use PhpParser\Node; | ||
use PHPStan\Analyser\Scope; | ||
use PHPStan\Reflection\MissingPropertyFromReflectionException; | ||
use PHPStan\Rules\Rule; | ||
use PHPStan\Type\Doctrine\ObjectMetadataResolver; | ||
use PHPStan\Type\ObjectType; | ||
use PHPStan\Type\TypeCombinator; | ||
use PHPStan\Type\VerbosityLevel; | ||
use function sprintf; | ||
|
||
/** | ||
* @implements Rule<Node\Stmt\PropertyProperty> | ||
*/ | ||
class EntityEmbeddableRule implements Rule | ||
{ | ||
|
||
/** @var \PHPStan\Type\Doctrine\ObjectMetadataResolver */ | ||
private $objectMetadataResolver; | ||
|
||
public function __construct(ObjectMetadataResolver $objectMetadataResolver) | ||
{ | ||
$this->objectMetadataResolver = $objectMetadataResolver; | ||
} | ||
|
||
public function getNodeType(): string | ||
{ | ||
return Node\Stmt\PropertyProperty::class; | ||
} | ||
|
||
public function processNode(Node $node, Scope $scope): array | ||
{ | ||
$class = $scope->getClassReflection(); | ||
if ($class === null) { | ||
return []; | ||
} | ||
|
||
$objectManager = $this->objectMetadataResolver->getObjectManager(); | ||
if ($objectManager === null) { | ||
return []; | ||
} | ||
|
||
$className = $class->getName(); | ||
|
||
try { | ||
$metadata = $objectManager->getClassMetadata($className); | ||
} catch (\Doctrine\ORM\Mapping\MappingException $e) { | ||
return []; | ||
} | ||
|
||
$classMetadataInfo = 'Doctrine\ORM\Mapping\ClassMetadataInfo'; | ||
if (!$metadata instanceof $classMetadataInfo) { | ||
return []; | ||
} | ||
|
||
$propertyName = (string) $node->name; | ||
try { | ||
$property = $class->getNativeProperty($propertyName); | ||
} catch (MissingPropertyFromReflectionException $e) { | ||
return []; | ||
} | ||
|
||
if (!isset($metadata->embeddedClasses[$propertyName])) { | ||
return []; | ||
} | ||
|
||
$errors = []; | ||
$embeddedClass = $metadata->embeddedClasses[$propertyName]; | ||
$propertyWritableType = $property->getWritableType(); | ||
$accordingToMapping = new ObjectType($embeddedClass['class']); | ||
if (!TypeCombinator::removeNull($propertyWritableType)->equals($accordingToMapping)) { | ||
$errors[] = sprintf( | ||
'Property %s::$%s type mapping mismatch: mapping specifies %s but property expects %s.', | ||
$class->getName(), | ||
$propertyName, | ||
$accordingToMapping->describe(VerbosityLevel::typeOnly()), | ||
$propertyWritableType->describe(VerbosityLevel::typeOnly()) | ||
); | ||
} | ||
|
||
return $errors; | ||
} | ||
|
||
} |
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
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,37 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace PHPStan\Rules\Doctrine\ORM; | ||
|
||
use PHPStan\Rules\Rule; | ||
use PHPStan\Testing\RuleTestCase; | ||
use PHPStan\Type\Doctrine\ObjectMetadataResolver; | ||
|
||
/** | ||
* @extends RuleTestCase<EntityEmbeddableRule> | ||
*/ | ||
class EntityEmbeddableRuleTest extends RuleTestCase | ||
{ | ||
|
||
protected function getRule(): Rule | ||
{ | ||
return new EntityEmbeddableRule( | ||
new ObjectMetadataResolver(__DIR__ . '/entity-manager.php', null) | ||
); | ||
} | ||
|
||
public function testEmbedded(): void | ||
{ | ||
$this->analyse([__DIR__ . '/data/EntityWithEmbeddable.php'], []); | ||
} | ||
|
||
public function testEmbeddedWithWrongTypeHint(): void | ||
{ | ||
$this->analyse([__DIR__ . '/data/EntityWithBrokenEmbeddable.php'], [ | ||
[ | ||
'Property PHPStan\Rules\Doctrine\ORM\EntityWithBrokenEmbeddable::$embedded type mapping mismatch: mapping specifies PHPStan\Rules\Doctrine\ORM\Embeddable but property expects int.', | ||
24, | ||
], | ||
]); | ||
} | ||
|
||
} |
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,17 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace PHPStan\Rules\Doctrine\ORM; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
|
||
/** | ||
* @ORM\Embeddable() | ||
*/ | ||
class BrokenEmbeddable | ||
{ | ||
/** | ||
* @ORM\Column(type="string", nullable=true) | ||
* @var string | ||
*/ | ||
private $one; | ||
} |
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,17 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace PHPStan\Rules\Doctrine\ORM; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
|
||
/** | ||
* @ORM\Embeddable() | ||
*/ | ||
class Embeddable | ||
{ | ||
/** | ||
* @ORM\Column(type="string") | ||
* @var string | ||
*/ | ||
private $one; | ||
} |
25 changes: 25 additions & 0 deletions
25
tests/Rules/Doctrine/ORM/data/EntityWithBrokenEmbeddable.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,25 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace PHPStan\Rules\Doctrine\ORM; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
|
||
/** | ||
* @ORM\Entity() | ||
*/ | ||
class EntityWithBrokenEmbeddable | ||
{ | ||
|
||
/** | ||
* @ORM\Id() | ||
* @ORM\Column(type="integer") | ||
* @var int | ||
*/ | ||
private $id; | ||
|
||
/** | ||
* @ORM\Embedded(class=Embeddable::class) | ||
* @var int | ||
*/ | ||
private $embedded; | ||
} |
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,31 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace PHPStan\Rules\Doctrine\ORM; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
|
||
/** | ||
* @ORM\Entity() | ||
*/ | ||
class EntityWithEmbeddable | ||
{ | ||
|
||
/** | ||
* @ORM\Id() | ||
* @ORM\Column(type="integer") | ||
* @var int | ||
*/ | ||
private $id; | ||
|
||
/** | ||
* @ORM\Embedded(class=Embeddable::class) | ||
* @var Embeddable | ||
*/ | ||
private $embedded; | ||
|
||
/** | ||
* @ORM\Embedded(class=Embeddable::class) | ||
* @var ?Embeddable | ||
*/ | ||
private $nullable; | ||
} |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm trying to figure out internally why the embeddables are considered transient, but removal of this check causes no test failures
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also classes not managed by Doctrine will have an exception thrown a bit later while trying to get their metadata and will return early from the rule with no errors, so I believe the intent is preserved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've created an issue in ORM but I think we can continue without waiting for its resolution doctrine/orm#8006