Merge branch '2.8' into 3.3

* 2.8:
  [Form] Fixed ContextErrorException in FileType
  [DI] Fix handling of inlined definitions by ContainerBuilder
This commit is contained in:
Nicolas Grekas 2017-11-23 12:01:29 +01:00
commit ae62e56d8a
5 changed files with 78 additions and 19 deletions

View File

@ -573,7 +573,7 @@ class ContainerBuilder extends Container implements TaggedContainerInterface
$this->loading[$id] = true;
try {
$service = $this->createService($definition, $id);
$service = $this->createService($definition, new \SplObjectStorage(), $id);
} finally {
unset($this->loading[$id]);
}
@ -1013,8 +1013,12 @@ class ContainerBuilder extends Container implements TaggedContainerInterface
* @throws RuntimeException When the service is a synthetic service
* @throws InvalidArgumentException When configure callable is not callable
*/
private function createService(Definition $definition, $id, $tryProxy = true)
private function createService(Definition $definition, \SplObjectStorage $inlinedDefinitions, $id = null, $tryProxy = true)
{
if (null === $id && isset($inlinedDefinitions[$definition])) {
return $inlinedDefinitions[$definition];
}
if ($definition instanceof ChildDefinition) {
throw new RuntimeException(sprintf('Constructing service "%s" from a parent definition is not supported at build time.', $id));
}
@ -1033,11 +1037,11 @@ class ContainerBuilder extends Container implements TaggedContainerInterface
->instantiateProxy(
$this,
$definition,
$id, function () use ($definition, $id) {
return $this->createService($definition, $id, false);
$id, function () use ($definition, $inlinedDefinitions, $id) {
return $this->createService($definition, $inlinedDefinitions, $id, false);
}
);
$this->shareService($definition, $proxy, $id);
$this->shareService($definition, $proxy, $id, $inlinedDefinitions);
return $proxy;
}
@ -1048,11 +1052,11 @@ class ContainerBuilder extends Container implements TaggedContainerInterface
require_once $parameterBag->resolveValue($definition->getFile());
}
$arguments = $this->resolveServices($parameterBag->unescapeValue($parameterBag->resolveValue($definition->getArguments())));
$arguments = $this->doResolveServices($parameterBag->unescapeValue($parameterBag->resolveValue($definition->getArguments())), $inlinedDefinitions);
if (null !== $factory = $definition->getFactory()) {
if (is_array($factory)) {
$factory = array($this->resolveServices($parameterBag->resolveValue($factory[0])), $factory[1]);
$factory = array($this->doResolveServices($parameterBag->resolveValue($factory[0]), $inlinedDefinitions), $factory[1]);
} elseif (!is_string($factory)) {
throw new RuntimeException(sprintf('Cannot create service "%s" because of invalid factory', $id));
}
@ -1081,16 +1085,16 @@ class ContainerBuilder extends Container implements TaggedContainerInterface
if ($tryProxy || !$definition->isLazy()) {
// share only if proxying failed, or if not a proxy
$this->shareService($definition, $service, $id);
$this->shareService($definition, $service, $id, $inlinedDefinitions);
}
$properties = $this->resolveServices($parameterBag->unescapeValue($parameterBag->resolveValue($definition->getProperties())));
$properties = $this->doResolveServices($parameterBag->unescapeValue($parameterBag->resolveValue($definition->getProperties())), $inlinedDefinitions);
foreach ($properties as $name => $value) {
$service->$name = $value;
}
foreach ($definition->getMethodCalls() as $call) {
$this->callMethod($service, $call);
$this->callMethod($service, $call, $inlinedDefinitions);
}
if ($callable = $definition->getConfigurator()) {
@ -1100,7 +1104,7 @@ class ContainerBuilder extends Container implements TaggedContainerInterface
if ($callable[0] instanceof Reference) {
$callable[0] = $this->get((string) $callable[0], $callable[0]->getInvalidBehavior());
} elseif ($callable[0] instanceof Definition) {
$callable[0] = $this->createService($callable[0], null);
$callable[0] = $this->createService($callable[0], $inlinedDefinitions);
}
}
@ -1123,10 +1127,15 @@ class ContainerBuilder extends Container implements TaggedContainerInterface
* the real service instances and all expressions evaluated
*/
public function resolveServices($value)
{
return $this->doResolveServices($value, new \SplObjectStorage());
}
private function doResolveServices($value, \SplObjectStorage $inlinedDefinitions)
{
if (is_array($value)) {
foreach ($value as $k => $v) {
$value[$k] = $this->resolveServices($v);
$value[$k] = $this->doResolveServices($v, $inlinedDefinitions);
}
} elseif ($value instanceof ServiceClosureArgument) {
$reference = $value->getValues()[0];
@ -1161,7 +1170,7 @@ class ContainerBuilder extends Container implements TaggedContainerInterface
} elseif ($value instanceof Reference) {
$value = $this->get((string) $value, $value->getInvalidBehavior());
} elseif ($value instanceof Definition) {
$value = $this->createService($value, null);
$value = $this->createService($value, $inlinedDefinitions);
} elseif ($value instanceof Expression) {
$value = $this->getExpressionLanguage()->evaluate($value, array('container' => $this));
}
@ -1430,7 +1439,7 @@ class ContainerBuilder extends Container implements TaggedContainerInterface
return $this->proxyInstantiator;
}
private function callMethod($service, $call)
private function callMethod($service, $call, \SplObjectStorage $inlinedDefinitions)
{
$services = self::getServiceConditionals($call[1]);
@ -1440,7 +1449,7 @@ class ContainerBuilder extends Container implements TaggedContainerInterface
}
}
call_user_func_array(array($service, $call[0]), $this->resolveServices($this->getParameterBag()->unescapeValue($this->getParameterBag()->resolveValue($call[1]))));
call_user_func_array(array($service, $call[0]), $this->doResolveServices($this->getParameterBag()->unescapeValue($this->getParameterBag()->resolveValue($call[1])), $inlinedDefinitions));
}
/**
@ -1450,9 +1459,14 @@ class ContainerBuilder extends Container implements TaggedContainerInterface
* @param object $service
* @param string|null $id
*/
private function shareService(Definition $definition, $service, $id)
private function shareService(Definition $definition, $service, $id, \SplObjectStorage $inlinedDefinitions)
{
if (null !== $id && $definition->isShared()) {
if (!$definition->isShared()) {
return;
}
if (null === $id) {
$inlinedDefinitions[$definition] = $service;
} else {
$this->services[$this->normalizeId($id)] = $service;
}
}

View File

@ -1006,6 +1006,28 @@ class ContainerBuilderTest extends TestCase
$this->assertTrue($classInList);
}
public function testInlinedDefinitions()
{
$container = new ContainerBuilder();
$definition = new Definition('BarClass');
$container->register('bar_user', 'BarUserClass')
->addArgument($definition)
->setProperty('foo', $definition);
$container->register('bar', 'BarClass')
->setProperty('foo', $definition)
->addMethodCall('setBaz', array($definition));
$barUser = $container->get('bar_user');
$bar = $container->get('bar');
$this->assertSame($barUser->foo, $barUser->bar);
$this->assertSame($bar->foo, $bar->getBaz());
$this->assertNotSame($bar->foo, $barUser->foo);
}
public function testInitializePropertiesBeforeMethodCalls()
{
$container = new ContainerBuilder();

View File

@ -9,7 +9,7 @@ function sc_configure($instance)
$instance->configure();
}
class BarClass
class BarClass extends BazClass
{
protected $baz;
public $foo = 'foo';

View File

@ -34,8 +34,13 @@ class FileType extends AbstractType
if ($options['multiple']) {
$data = array();
$files = $event->getData();
foreach ($event->getData() as $file) {
if (!is_array($files)) {
$files = array();
}
foreach ($files as $file) {
if ($requestHandler->isFileUpload($file)) {
$data[] = $file;
}

View File

@ -159,6 +159,24 @@ class FileTypeTest extends BaseTypeTest
$this->assertCount(1, $form->getData());
}
/**
* @dataProvider requestHandlerProvider
*/
public function testSubmitNonArrayValueWhenMultiple(RequestHandlerInterface $requestHandler)
{
$form = $this->factory
->createBuilder(static::TESTED_TYPE, null, array(
'multiple' => true,
))
->setRequestHandler($requestHandler)
->getForm();
$form->submit(null);
$this->assertSame(array(), $form->getData());
$this->assertSame(array(), $form->getNormData());
$this->assertSame(array(), $form->getViewData());
}
public function requestHandlerProvider()
{
return array(