123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- <?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\Routing\Tests;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\Config\Loader\LoaderInterface;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\Routing\Generator\CompiledUrlGenerator;
- use Symfony\Component\Routing\Generator\UrlGenerator;
- use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
- use Symfony\Component\Routing\Matcher\RequestMatcherInterface;
- use Symfony\Component\Routing\Matcher\UrlMatcher;
- use Symfony\Component\Routing\Matcher\UrlMatcherInterface;
- use Symfony\Component\Routing\RouteCollection;
- use Symfony\Component\Routing\Router;
- class RouterTest extends TestCase
- {
- private $router = null;
- private $loader = null;
- private $cacheDir;
- protected function setUp(): void
- {
- $this->loader = $this->createMock(LoaderInterface::class);
- $this->router = new Router($this->loader, 'routing.yml');
- $this->cacheDir = sys_get_temp_dir().\DIRECTORY_SEPARATOR.uniqid('router_', true);
- }
- protected function tearDown(): void
- {
- if (is_dir($this->cacheDir)) {
- array_map('unlink', glob($this->cacheDir.\DIRECTORY_SEPARATOR.'*'));
- @rmdir($this->cacheDir);
- }
- $this->loader = null;
- $this->router = null;
- $this->cacheDir = null;
- }
- public function testSetOptionsWithSupportedOptions()
- {
- $this->router->setOptions([
- 'cache_dir' => './cache',
- 'debug' => true,
- 'resource_type' => 'ResourceType',
- ]);
- $this->assertSame('./cache', $this->router->getOption('cache_dir'));
- $this->assertTrue($this->router->getOption('debug'));
- $this->assertSame('ResourceType', $this->router->getOption('resource_type'));
- }
- public function testSetOptionsWithUnsupportedOptions()
- {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage('The Router does not support the following options: "option_foo", "option_bar"');
- $this->router->setOptions([
- 'cache_dir' => './cache',
- 'option_foo' => true,
- 'option_bar' => 'baz',
- 'resource_type' => 'ResourceType',
- ]);
- }
- public function testSetOptionWithSupportedOption()
- {
- $this->router->setOption('cache_dir', './cache');
- $this->assertSame('./cache', $this->router->getOption('cache_dir'));
- }
- public function testSetOptionWithUnsupportedOption()
- {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage('The Router does not support the "option_foo" option');
- $this->router->setOption('option_foo', true);
- }
- public function testGetOptionWithUnsupportedOption()
- {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage('The Router does not support the "option_foo" option');
- $this->router->getOption('option_foo', true);
- }
- public function testThatRouteCollectionIsLoaded()
- {
- $this->router->setOption('resource_type', 'ResourceType');
- $routeCollection = new RouteCollection();
- $this->loader->expects($this->once())
- ->method('load')->with('routing.yml', 'ResourceType')
- ->willReturn($routeCollection);
- $this->assertSame($routeCollection, $this->router->getRouteCollection());
- }
- public function testMatcherIsCreatedIfCacheIsNotConfigured()
- {
- $this->router->setOption('cache_dir', null);
- $this->loader->expects($this->once())
- ->method('load')->with('routing.yml', null)
- ->willReturn(new RouteCollection());
- $this->assertInstanceOf(UrlMatcher::class, $this->router->getMatcher());
- }
- public function testGeneratorIsCreatedIfCacheIsNotConfigured()
- {
- $this->router->setOption('cache_dir', null);
- $this->loader->expects($this->once())
- ->method('load')->with('routing.yml', null)
- ->willReturn(new RouteCollection());
- $this->assertInstanceOf(CompiledUrlGenerator::class, $this->router->getGenerator());
- }
- public function testGeneratorIsCreatedIfCacheIsNotConfiguredNotCompiled()
- {
- $this->router->setOption('cache_dir', null);
- $this->router->setOption('generator_class', UrlGenerator::class);
- $this->loader->expects($this->once())
- ->method('load')->with('routing.yml', null)
- ->willReturn(new RouteCollection());
- $this->assertInstanceOf(UrlGenerator::class, $this->router->getGenerator());
- $this->assertNotInstanceOf(CompiledUrlGenerator::class, $this->router->getGenerator());
- }
- public function testMatchRequestWithUrlMatcherInterface()
- {
- $matcher = $this->createMock(UrlMatcherInterface::class);
- $matcher->expects($this->once())->method('match');
- $p = new \ReflectionProperty($this->router, 'matcher');
- $p->setAccessible(true);
- $p->setValue($this->router, $matcher);
- $this->router->matchRequest(Request::create('/'));
- }
- public function testMatchRequestWithRequestMatcherInterface()
- {
- $matcher = $this->createMock(RequestMatcherInterface::class);
- $matcher->expects($this->once())->method('matchRequest');
- $p = new \ReflectionProperty($this->router, 'matcher');
- $p->setAccessible(true);
- $p->setValue($this->router, $matcher);
- $this->router->matchRequest(Request::create('/'));
- }
- public function testDefaultLocaleIsPassedToGeneratorClass()
- {
- $this->loader->expects($this->once())
- ->method('load')->with('routing.yml', null)
- ->willReturn(new RouteCollection());
- $router = new Router($this->loader, 'routing.yml', [
- 'cache_dir' => null,
- ], null, null, 'hr');
- $generator = $router->getGenerator();
- $this->assertInstanceOf(UrlGeneratorInterface::class, $generator);
- $p = new \ReflectionProperty($generator, 'defaultLocale');
- $p->setAccessible(true);
- $this->assertSame('hr', $p->getValue($generator));
- }
- public function testDefaultLocaleIsPassedToCompiledGeneratorCacheClass()
- {
- $this->loader->expects($this->once())
- ->method('load')->with('routing.yml', null)
- ->willReturn(new RouteCollection());
- $router = new Router($this->loader, 'routing.yml', [
- 'cache_dir' => $this->cacheDir,
- ], null, null, 'hr');
- $generator = $router->getGenerator();
- $this->assertInstanceOf(UrlGeneratorInterface::class, $generator);
- $p = new \ReflectionProperty($generator, 'defaultLocale');
- $p->setAccessible(true);
- $this->assertSame('hr', $p->getValue($generator));
- }
- }
|