From dcf824688a8bab35a03cdf58dd27be0cb1620c74 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Fri, 5 Dec 2014 13:15:15 +0100 Subject: [PATCH] Verifying that reflection properties that don't contain an embeddable will not crash reading properties, but will return `null` instead --- .../ReflectionEmbeddedPropertyTest.php | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/tests/Doctrine/Tests/ORM/Mapping/ReflectionEmbeddedPropertyTest.php b/tests/Doctrine/Tests/ORM/Mapping/ReflectionEmbeddedPropertyTest.php index 237de15d8..8a67efdf3 100644 --- a/tests/Doctrine/Tests/ORM/Mapping/ReflectionEmbeddedPropertyTest.php +++ b/tests/Doctrine/Tests/ORM/Mapping/ReflectionEmbeddedPropertyTest.php @@ -42,6 +42,30 @@ class ReflectionEmbeddedPropertyTest extends \PHPUnit_Framework_TestCase $this->assertSame('changedValue', $embeddedPropertyReflection->getValue($object)); } + /** + * @param ReflectionProperty $parentProperty + * @param ReflectionProperty $childProperty + * + * @dataProvider getTestedReflectionProperties + */ + public function testWillSkipReadingPropertiesFromNullEmbeddable( + ReflectionProperty $parentProperty, + ReflectionProperty $childProperty + ) + { + $embeddedPropertyReflection = new ReflectionEmbeddedProperty( + $parentProperty, + $childProperty, + $childProperty->getDeclaringClass()->getName() + ); + + $instantiator = new Instantiator(); + + $this->assertNull($embeddedPropertyReflection->getValue( + $instantiator->instantiate($parentProperty->getDeclaringClass()->getName()) + )); + } + /** * Data provider *