Skip to content

Commit

Permalink
[Serializer] deserialize as a null when inner object cannot be create…
Browse files Browse the repository at this point in the history
…d and type hint allows null
  • Loading branch information
Jakub Kisielewski authored and fabpot committed Feb 19, 2018
1 parent 3ef76bf commit 2fe9eb1
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
Expand Up @@ -351,6 +351,11 @@ protected function instantiateObject(array &$data, $class, array &$context, \Ref
}
} catch (\ReflectionException $e) {
throw new RuntimeException(sprintf('Could not determine the class of the parameter "%s".', $key), 0, $e);
} catch (MissingConstructorArgumentsException $e) {
if (!$constructorParameter->getType()->allowsNull()) {
throw $e;
}
$parameterData = null;
}

// Don't run set for a parameter passed to the constructor
Expand Down
Expand Up @@ -182,6 +182,23 @@ public function testConstructorWithObjectTypeHintDenormalize()
$this->assertEquals('rab', $obj->getInner()->bar);
}

public function testConstructorWithUnconstructableNullableObjectTypeHintDenormalize()
{
$data = array(
'id' => 10,
'inner' => null,
);

$normalizer = new ObjectNormalizer();
$serializer = new Serializer(array($normalizer));
$normalizer->setSerializer($serializer);

$obj = $normalizer->denormalize($data, DummyWithNullableConstructorObject::class);
$this->assertInstanceOf(DummyWithNullableConstructorObject::class, $obj);
$this->assertEquals(10, $obj->getId());
$this->assertNull($obj->getInner());
}

/**
* @expectedException \Symfony\Component\Serializer\Exception\RuntimeException
* @expectedExceptionMessage Could not determine the class of the parameter "unknown".
Expand Down Expand Up @@ -1109,3 +1126,25 @@ public function getFoo()
return $this->Foo;
}
}

class DummyWithNullableConstructorObject
{
private $id;
private $inner;

public function __construct($id, ?ObjectConstructorDummy $inner)
{
$this->id = $id;
$this->inner = $inner;
}

public function getId()
{
return $this->id;
}

public function getInner()
{
return $this->inner;
}
}

0 comments on commit 2fe9eb1

Please sign in to comment.