123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- <?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\Controller;
-
- use PHPUnit\Framework\TestCase;
- use Psr\Log\LoggerInterface;
- use Symfony\Component\HttpKernel\Controller\ControllerResolver;
- use Symfony\Component\HttpFoundation\Request;
-
- class ControllerResolverTest extends TestCase
- {
- public function testGetControllerWithoutControllerParameter()
- {
- $logger = $this->getMockBuilder('Psr\Log\LoggerInterface')->getMock();
- $logger->expects($this->once())->method('warning')->with('Unable to look for the controller as the "_controller" parameter is missing.');
- $resolver = $this->createControllerResolver($logger);
-
- $request = Request::create('/');
- $this->assertFalse($resolver->getController($request), '->getController() returns false when the request has no _controller attribute');
- }
-
- public function testGetControllerWithLambda()
- {
- $resolver = $this->createControllerResolver();
-
- $request = Request::create('/');
- $request->attributes->set('_controller', $lambda = function () {});
- $controller = $resolver->getController($request);
- $this->assertSame($lambda, $controller);
- }
-
- public function testGetControllerWithObjectAndInvokeMethod()
- {
- $resolver = $this->createControllerResolver();
- $object = new InvokableController();
-
- $request = Request::create('/');
- $request->attributes->set('_controller', $object);
- $controller = $resolver->getController($request);
- $this->assertSame($object, $controller);
- }
-
- public function testGetControllerWithObjectAndMethod()
- {
- $resolver = $this->createControllerResolver();
- $object = new ControllerTest();
-
- $request = Request::create('/');
- $request->attributes->set('_controller', array($object, 'publicAction'));
- $controller = $resolver->getController($request);
- $this->assertSame(array($object, 'publicAction'), $controller);
- }
-
- public function testGetControllerWithClassAndMethodAsArray()
- {
- $resolver = $this->createControllerResolver();
-
- $request = Request::create('/');
- $request->attributes->set('_controller', array(ControllerTest::class, 'publicAction'));
- $controller = $resolver->getController($request);
- $this->assertInstanceOf(ControllerTest::class, $controller[0]);
- $this->assertSame('publicAction', $controller[1]);
- }
-
- public function testGetControllerWithClassAndMethodAsString()
- {
- $resolver = $this->createControllerResolver();
-
- $request = Request::create('/');
- $request->attributes->set('_controller', ControllerTest::class.'::publicAction');
- $controller = $resolver->getController($request);
- $this->assertInstanceOf(ControllerTest::class, $controller[0]);
- $this->assertSame('publicAction', $controller[1]);
- }
-
- public function testGetControllerWithInvokableClass()
- {
- $resolver = $this->createControllerResolver();
-
- $request = Request::create('/');
- $request->attributes->set('_controller', InvokableController::class);
- $controller = $resolver->getController($request);
- $this->assertInstanceOf(InvokableController::class, $controller);
- }
-
- /**
- * @expectedException \InvalidArgumentException
- */
- public function testGetControllerOnObjectWithoutInvokeMethod()
- {
- $resolver = $this->createControllerResolver();
-
- $request = Request::create('/');
- $request->attributes->set('_controller', new \stdClass());
- $resolver->getController($request);
- }
-
- public function testGetControllerWithFunction()
- {
- $resolver = $this->createControllerResolver();
-
- $request = Request::create('/');
- $request->attributes->set('_controller', 'Symfony\Component\HttpKernel\Tests\Controller\some_controller_function');
- $controller = $resolver->getController($request);
- $this->assertSame('Symfony\Component\HttpKernel\Tests\Controller\some_controller_function', $controller);
- }
-
- public function testGetControllerWithClosure()
- {
- $resolver = $this->createControllerResolver();
-
- $closure = function () {
- return 'test';
- };
-
- $request = Request::create('/');
- $request->attributes->set('_controller', $closure);
- $controller = $resolver->getController($request);
- $this->assertInstanceOf(\Closure::class, $controller);
- $this->assertSame('test', $controller());
- }
-
- /**
- * @dataProvider getStaticControllers
- */
- public function testGetControllerWithStaticController($staticController, $returnValue)
- {
- $resolver = $this->createControllerResolver();
-
- $request = Request::create('/');
- $request->attributes->set('_controller', $staticController);
- $controller = $resolver->getController($request);
- $this->assertSame($staticController, $controller);
- $this->assertSame($returnValue, $controller());
- }
-
- public function getStaticControllers()
- {
- return array(
- array(AbstractController::class.'::staticAction', 'foo'),
- array(array(AbstractController::class, 'staticAction'), 'foo'),
- array(PrivateConstructorController::class.'::staticAction', 'bar'),
- array(array(PrivateConstructorController::class, 'staticAction'), 'bar'),
- );
- }
-
- /**
- * @dataProvider getUndefinedControllers
- */
- public function testGetControllerWithUndefinedController($controller, $exceptionName = null, $exceptionMessage = null)
- {
- $resolver = $this->createControllerResolver();
- if (method_exists($this, 'expectException')) {
- $this->expectException($exceptionName);
- $this->expectExceptionMessage($exceptionMessage);
- } else {
- $this->setExpectedException($exceptionName, $exceptionMessage);
- }
-
- $request = Request::create('/');
- $request->attributes->set('_controller', $controller);
- $resolver->getController($request);
- }
-
- public function getUndefinedControllers()
- {
- $controller = new ControllerTest();
-
- return array(
- array('foo', \Error::class, 'Class \'foo\' not found'),
- array('oof::bar', \Error::class, 'Class \'oof\' not found'),
- array(array('oof', 'bar'), \Error::class, 'Class \'oof\' not found'),
- array('Symfony\Component\HttpKernel\Tests\Controller\ControllerTest::staticsAction', \InvalidArgumentException::class, 'The controller for URI "/" is not callable. Expected method "staticsAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest", did you mean "staticAction"?'),
- array('Symfony\Component\HttpKernel\Tests\Controller\ControllerTest::privateAction', \InvalidArgumentException::class, 'The controller for URI "/" is not callable. Method "privateAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest" should be public and non-abstract'),
- array('Symfony\Component\HttpKernel\Tests\Controller\ControllerTest::protectedAction', \InvalidArgumentException::class, 'The controller for URI "/" is not callable. Method "protectedAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest" should be public and non-abstract'),
- array('Symfony\Component\HttpKernel\Tests\Controller\ControllerTest::undefinedAction', \InvalidArgumentException::class, 'The controller for URI "/" is not callable. Expected method "undefinedAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest". Available methods: "publicAction", "staticAction"'),
- array('Symfony\Component\HttpKernel\Tests\Controller\ControllerTest', \InvalidArgumentException::class, 'The controller for URI "/" is not callable. Controller class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest" cannot be called without a method name. You need to implement "__invoke" or use one of the available methods: "publicAction", "staticAction".'),
- array(array($controller, 'staticsAction'), \InvalidArgumentException::class, 'The controller for URI "/" is not callable. Expected method "staticsAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest", did you mean "staticAction"?'),
- array(array($controller, 'privateAction'), \InvalidArgumentException::class, 'The controller for URI "/" is not callable. Method "privateAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest" should be public and non-abstract'),
- array(array($controller, 'protectedAction'), \InvalidArgumentException::class, 'The controller for URI "/" is not callable. Method "protectedAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest" should be public and non-abstract'),
- array(array($controller, 'undefinedAction'), \InvalidArgumentException::class, 'The controller for URI "/" is not callable. Expected method "undefinedAction" on class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest". Available methods: "publicAction", "staticAction"'),
- array($controller, \InvalidArgumentException::class, 'The controller for URI "/" is not callable. Controller class "Symfony\Component\HttpKernel\Tests\Controller\ControllerTest" cannot be called without a method name. You need to implement "__invoke" or use one of the available methods: "publicAction", "staticAction".'),
- array(array('a' => 'foo', 'b' => 'bar'), \InvalidArgumentException::class, 'The controller for URI "/" is not callable. Invalid array callable, expected array(controller, method).'),
- );
- }
-
- protected function createControllerResolver(LoggerInterface $logger = null)
- {
- return new ControllerResolver($logger);
- }
- }
-
- function some_controller_function($foo, $foobar)
- {
- }
-
- class ControllerTest
- {
- public function __construct()
- {
- }
-
- public function __toString()
- {
- return '';
- }
-
- public function publicAction()
- {
- }
-
- private function privateAction()
- {
- }
-
- protected function protectedAction()
- {
- }
-
- public static function staticAction()
- {
- }
- }
-
- class InvokableController
- {
- public function __invoke($foo, $bar = null)
- {
- }
- }
-
- abstract class AbstractController
- {
- public static function staticAction()
- {
- return 'foo';
- }
- }
-
- class PrivateConstructorController
- {
- private function __construct()
- {
- }
-
- public static function staticAction()
- {
- return 'bar';
- }
- }
|