Skip to content

Commit 09d5f4e

Browse files
committed
Merge branch '3.1' into 3.2
* 3.1: fixed typo fixed composer.json always check for all fields to be mapped clarify exception when no args are configured [PropertyAccess] Handle interfaces in the invalid argument exception [DI] Fix defaults overriding empty strings in AutowirePass [Debug] Workaround "null" $context [Debug] Remove $context arg from handleError(), preparing for PHP 7.2 [Routing] Fix BC break in AnnotationClassLoader defaults attributes handling Fix tests with ICU 57.1 Fix the condition checking the minimum ICU version
2 parents 531c6cc + 537b932 commit 09d5f4e

File tree

20 files changed

+253
-29
lines changed

20 files changed

+253
-29
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@
9090
"symfony/phpunit-bridge": "~3.2",
9191
"symfony/polyfill-apcu": "~1.1",
9292
"symfony/security-acl": "~2.8|~3.0",
93-
"phpdocumentor/reflection-docblock": "^3.0"
93+
"phpdocumentor/reflection-docblock": "^3.0",
94+
"sensio/framework-extra-bundle": "^3.0.2"
9495
},
9596
"conflict": {
9697
"phpdocumentor/reflection-docblock": "<3.0",

src/Symfony/Bridge/Doctrine/Tests/Validator/Constraints/UniqueEntityValidatorTest.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,23 @@ public function testValidateUniquenessWithIgnoreNull()
264264
->assertRaised();
265265
}
266266

267+
/**
268+
* @expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException
269+
*/
270+
public function testAllConfiguredFieldsAreCheckedOfBeingMappedByDoctrineWithIgnoreNullEnabled()
271+
{
272+
$constraint = new UniqueEntity(array(
273+
'message' => 'myMessage',
274+
'fields' => array('name', 'name2'),
275+
'em' => self::EM_NAME,
276+
'ignoreNull' => true,
277+
));
278+
279+
$entity1 = new SingleIntIdEntity(1, null);
280+
281+
$this->validator->validate($entity1, $constraint);
282+
}
283+
267284
public function testValidateUniquenessWithValidCustomErrorPath()
268285
{
269286
$constraint = new UniqueEntity(array(

src/Symfony/Bridge/Doctrine/Validator/Constraints/UniqueEntityValidator.php

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,14 @@ public function validate($entity, Constraint $constraint)
8686
throw new ConstraintDefinitionException(sprintf('The field "%s" is not mapped by Doctrine, so it cannot be validated for uniqueness.', $fieldName));
8787
}
8888

89-
$criteria[$fieldName] = $class->reflFields[$fieldName]->getValue($entity);
89+
$fieldValue = $class->reflFields[$fieldName]->getValue($entity);
9090

91-
if ($constraint->ignoreNull && null === $criteria[$fieldName]) {
92-
return;
91+
if ($constraint->ignoreNull && null === $fieldValue) {
92+
continue;
9393
}
9494

95+
$criteria[$fieldName] = $fieldValue;
96+
9597
if (null !== $criteria[$fieldName] && $class->hasAssociation($fieldName)) {
9698
/* Ensure the Proxy is initialized before using reflection to
9799
* read its identifiers. This is necessary because the wrapped
@@ -101,6 +103,12 @@ public function validate($entity, Constraint $constraint)
101103
}
102104
}
103105

106+
// skip validation if there are no criteria (this can happen when the
107+
// "ignoreNull" option is enabled and fields to be checked are null
108+
if (empty($criteria)) {
109+
return;
110+
}
111+
104112
if (null !== $constraint->entityClass) {
105113
/* Retrieve repository from given entity name.
106114
* We ensure the retrieved repository can handle the entity
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
13+
14+
class AnnotatedControllerTest extends WebTestCase
15+
{
16+
/**
17+
* @dataProvider getRoutes
18+
*/
19+
public function testAnnotatedController($path, $expectedValue)
20+
{
21+
$client = $this->createClient(array('test_case' => 'AnnotatedController', 'root_config' => 'config.yml'));
22+
$client->request('GET', '/annotated'.$path);
23+
24+
$this->assertSame(200, $client->getResponse()->getStatusCode());
25+
$this->assertSame($expectedValue, $client->getResponse()->getContent());
26+
}
27+
28+
public function getRoutes()
29+
{
30+
return array(
31+
array('/null_request', 'Symfony\Component\HttpFoundation\Request'),
32+
array('/null_argument', ''),
33+
array('/null_argument_with_route_param', ''),
34+
array('/null_argument_with_route_param/value', 'value'),
35+
array('/argument_with_route_param_and_default', 'value'),
36+
array('/argument_with_route_param_and_default/custom', 'custom'),
37+
);
38+
}
39+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional\Bundle\TestBundle\Controller;
13+
14+
use Symfony\Component\HttpFoundation\Request;
15+
use Symfony\Component\HttpFoundation\Response;
16+
use Symfony\Component\Routing\Annotation\Route;
17+
18+
class AnnotatedController
19+
{
20+
/**
21+
* @Route("/null_request", name="null_request")
22+
*/
23+
public function requestDefaultNullAction(Request $request = null)
24+
{
25+
return new Response($request ? get_class($request) : null);
26+
}
27+
28+
/**
29+
* @Route("/null_argument", name="null_argument")
30+
*/
31+
public function argumentDefaultNullWithoutRouteParamAction($value = null)
32+
{
33+
return new Response($value);
34+
}
35+
36+
/**
37+
* @Route("/null_argument_with_route_param/{value}", name="null_argument_with_route_param")
38+
*/
39+
public function argumentDefaultNullWithRouteParamAction($value = null)
40+
{
41+
return new Response($value);
42+
}
43+
44+
/**
45+
* @Route("/argument_with_route_param_and_default/{value}", defaults={"value": "value"}, name="argument_with_route_param_and_default")
46+
*/
47+
public function argumentWithoutDefaultWithRouteParamAndDefaultAction($value)
48+
{
49+
return new Response($value);
50+
}
51+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
use Symfony\Bundle\FrameworkBundle\Tests\Functional\Bundle\TestBundle\TestBundle;
13+
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
14+
use Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle;
15+
16+
return array(
17+
new FrameworkBundle(),
18+
new TestBundle(),
19+
new SensioFrameworkExtraBundle(),
20+
);
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
imports:
2+
- { resource: ../config/default.yml }
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
annotated_controller:
2+
prefix: /annotated
3+
resource: "@TestBundle/Controller/AnnotatedController.php"
4+
type: annotation

src/Symfony/Bundle/FrameworkBundle/composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@
2727
"symfony/polyfill-mbstring": "~1.0",
2828
"symfony/filesystem": "~2.8|~3.0",
2929
"symfony/finder": "~2.8|~3.0",
30-
"symfony/routing": "~3.0",
30+
"symfony/routing": "~3.1.10|~3.2.3",
31+
"symfony/security-core": "~2.8|~3.0",
32+
"symfony/security-csrf": "~2.8|~3.0",
3133
"symfony/stopwatch": "~2.8|~3.0",
3234
"doctrine/cache": "~1.0"
3335
},
@@ -52,7 +54,8 @@
5254
"symfony/property-info": "~2.8|~3.0",
5355
"doctrine/annotations": "~1.0",
5456
"phpdocumentor/reflection-docblock": "^3.0",
55-
"twig/twig": "~1.26|~2.0"
57+
"twig/twig": "~1.26|~2.0",
58+
"sensio/framework-extra-bundle": "^3.0.2"
5659
},
5760
"conflict": {
5861
"phpdocumentor/reflection-docblock": "<3.0",

src/Symfony/Component/Debug/ErrorHandler.php

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -352,20 +352,18 @@ private function reRegister($prev)
352352
/**
353353
* Handles errors by filtering then logging them according to the configured bit fields.
354354
*
355-
* @param int $type One of the E_* constants
355+
* @param int $type One of the E_* constants
356356
* @param string $message
357357
* @param string $file
358358
* @param int $line
359-
* @param array $context
360-
* @param array $backtrace
361359
*
362360
* @return bool Returns false when no handling happens so that the PHP engine can handle the error itself
363361
*
364362
* @throws \ErrorException When $this->thrownErrors requests so
365363
*
366364
* @internal
367365
*/
368-
public function handleError($type, $message, $file, $line, array $context, array $backtrace = null)
366+
public function handleError($type, $message, $file, $line)
369367
{
370368
// Level is the current error reporting level to manage silent error.
371369
// Strong errors are not authorized to be silenced.
@@ -377,9 +375,20 @@ public function handleError($type, $message, $file, $line, array $context, array
377375
if (!$type || (!$log && !$throw)) {
378376
return $type && $log;
379377
}
378+
$scope = $this->scopedErrors & $type;
380379

381-
if (isset($context['GLOBALS']) && ($this->scopedErrors & $type)) {
382-
unset($context['GLOBALS']);
380+
if (4 < $numArgs = func_num_args()) {
381+
$context = $scope ? (func_get_arg(4) ?: array()) : array();
382+
$backtrace = 5 < $numArgs ? func_get_arg(5) : null; // defined on HHVM
383+
} else {
384+
$context = array();
385+
$backtrace = null;
386+
}
387+
388+
if (isset($context['GLOBALS']) && $scope) {
389+
$e = $context; // Whatever the signature of the method,
390+
unset($e['GLOBALS'], $context); // $context is always a reference in 5.3
391+
$context = $e;
383392
}
384393

385394
if (null !== $backtrace && $type & E_ERROR) {
@@ -399,7 +408,7 @@ public function handleError($type, $message, $file, $line, array $context, array
399408
} elseif (!$throw && !($type & $level)) {
400409
$errorAsException = new SilencedErrorContext($type, $file, $line);
401410
} else {
402-
if ($this->scopedErrors & $type) {
411+
if ($scope) {
403412
$errorAsException = new ContextErrorException($logMessage, 0, $type, $file, $line, $context);
404413
} else {
405414
$errorAsException = new \ErrorException($logMessage, 0, $type, $file, $line);

src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,10 @@ private function completeDefinition($id, Definition $definition)
114114
throw new RuntimeException(sprintf('Unable to autowire argument index %d ($%s) for the service "%s". If this is an object, give it a type-hint. Otherwise, specify this argument\'s value explicitly.', $index, $parameter->name, $id));
115115
}
116116

117-
// specifically pass the default value
118-
$arguments[$index] = $parameter->getDefaultValue();
117+
if (!array_key_exists($index, $arguments)) {
118+
// specifically pass the default value
119+
$arguments[$index] = $parameter->getDefaultValue();
120+
}
119121

120122
continue;
121123
}

src/Symfony/Component/DependencyInjection/Definition.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,10 @@ public function addArgument($argument)
198198
*/
199199
public function replaceArgument($index, $argument)
200200
{
201+
if (0 === count($this->arguments)) {
202+
throw new OutOfBoundsException('Cannot replace arguments if none have been configured yet.');
203+
}
204+
201205
if ($index < 0 || $index > count($this->arguments) - 1) {
202206
throw new OutOfBoundsException(sprintf('The index "%d" is not in the range [0, %d].', $index, count($this->arguments) - 1));
203207
}

src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,22 @@ public function testIgnoreServiceWithClassNotExisting()
494494

495495
$this->assertTrue($container->hasDefinition('bar'));
496496
}
497+
498+
public function testEmptyStringIsKept()
499+
{
500+
$container = new ContainerBuilder();
501+
502+
$container->register('a', __NAMESPACE__.'\A');
503+
$container->register('lille', __NAMESPACE__.'\Lille');
504+
$container->register('foo', __NAMESPACE__.'\MultipleArgumentsOptionalScalar')
505+
->setAutowired(true)
506+
->setArguments(array('', ''));
507+
508+
$pass = new AutowirePass();
509+
$pass->process($container);
510+
511+
$this->assertEquals(array(new Reference('a'), '', new Reference('lille')), $container->getDefinition('foo')->getArguments());
512+
}
497513
}
498514

499515
class Foo

src/Symfony/Component/DependencyInjection/Tests/DefinitionTest.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ public function testGetArgumentShouldCheckBounds()
257257

258258
/**
259259
* @expectedException \OutOfBoundsException
260+
* @expectedExceptionMessage The index "1" is not in the range [0, 0].
260261
*/
261262
public function testReplaceArgumentShouldCheckBounds()
262263
{
@@ -266,6 +267,16 @@ public function testReplaceArgumentShouldCheckBounds()
266267
$def->replaceArgument(1, 'bar');
267268
}
268269

270+
/**
271+
* @expectedException \OutOfBoundsException
272+
* @expectedExceptionMessage Cannot replace arguments if none have been configured yet.
273+
*/
274+
public function testReplaceArgumentWithoutExistingArgumentsShouldCheckBounds()
275+
{
276+
$def = new Definition('stdClass');
277+
$def->replaceArgument(0, 'bar');
278+
}
279+
269280
public function testSetGetProperties()
270281
{
271282
$def = new Definition('stdClass');

0 commit comments

Comments
 (0)