123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\HttpKernel\Tests\DependencyInjection;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\DependencyInjection\Compiler\ResolveInvalidReferencesPass;
- use Symfony\Component\DependencyInjection\ContainerBuilder;
- use Symfony\Component\DependencyInjection\Reference;
- use Symfony\Component\HttpKernel\DependencyInjection\RegisterControllerArgumentLocatorsPass;
- use Symfony\Component\HttpKernel\DependencyInjection\RemoveEmptyControllerArgumentLocatorsPass;
- class RemoveEmptyControllerArgumentLocatorsPassTest extends TestCase
- {
- public function testProcess()
- {
- $container = new ContainerBuilder();
- $resolver = $container->register('argument_resolver.service')->addArgument([]);
- $container->register('stdClass', 'stdClass');
- $container->register(parent::class, 'stdClass');
- $container->register('c1', RemoveTestController1::class)->addTag('controller.service_arguments');
- $container->register('c2', RemoveTestController2::class)->addTag('controller.service_arguments')
- ->addMethodCall('setTestCase', [new Reference('c1')]);
- $pass = new RegisterControllerArgumentLocatorsPass();
- $pass->process($container);
- $controllers = $container->getDefinition((string) $resolver->getArgument(0))->getArgument(0);
- $this->assertCount(2, $container->getDefinition((string) $controllers['c1::fooAction']->getValues()[0])->getArgument(0));
- $this->assertCount(1, $container->getDefinition((string) $controllers['c2::setTestCase']->getValues()[0])->getArgument(0));
- $this->assertCount(1, $container->getDefinition((string) $controllers['c2::fooAction']->getValues()[0])->getArgument(0));
- (new ResolveInvalidReferencesPass())->process($container);
- $this->assertCount(1, $container->getDefinition((string) $controllers['c2::setTestCase']->getValues()[0])->getArgument(0));
- $this->assertSame([], $container->getDefinition((string) $controllers['c2::fooAction']->getValues()[0])->getArgument(0));
- (new RemoveEmptyControllerArgumentLocatorsPass())->process($container);
- $controllers = $container->getDefinition((string) $resolver->getArgument(0))->getArgument(0);
- $this->assertSame(['c1::fooAction', 'c1:fooAction'], array_keys($controllers));
- $this->assertSame(['bar'], array_keys($container->getDefinition((string) $controllers['c1::fooAction']->getValues()[0])->getArgument(0)));
- $expectedLog = [
- 'Symfony\Component\HttpKernel\DependencyInjection\RemoveEmptyControllerArgumentLocatorsPass: Removing service-argument resolver for controller "c2::fooAction": no corresponding services exist for the referenced types.',
- 'Symfony\Component\HttpKernel\DependencyInjection\RemoveEmptyControllerArgumentLocatorsPass: Removing method "setTestCase" of service "c2" from controller candidates: the method is called at instantiation, thus cannot be an action.',
- ];
- $this->assertSame($expectedLog, $container->getCompiler()->getLog());
- }
- public function testInvoke()
- {
- $container = new ContainerBuilder();
- $resolver = $container->register('argument_resolver.service')->addArgument([]);
- $container->register('invokable', InvokableRegisterTestController::class)
- ->addTag('controller.service_arguments')
- ;
- (new RegisterControllerArgumentLocatorsPass())->process($container);
- (new RemoveEmptyControllerArgumentLocatorsPass())->process($container);
- $this->assertEquals(
- ['invokable::__invoke', 'invokable:__invoke', 'invokable'],
- array_keys($container->getDefinition((string) $resolver->getArgument(0))->getArgument(0))
- );
- }
- }
- class RemoveTestController1
- {
- public function fooAction(\stdClass $bar, ClassNotInContainer $baz = null)
- {
- }
- }
- class RemoveTestController2
- {
- public function setTestCase(TestCase $test)
- {
- }
- public function fooAction(ClassNotInContainer $bar = null)
- {
- }
- }
- class InvokableRegisterTestController
- {
- public function __invoke(\stdClass $bar)
- {
- }
- }
- class ClassNotInContainer
- {
- }
|