mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-28 21:18:46 +02:00
Package operations: 2 installs, 23 updates, 0 removals - Updating psr/log (1.1.0 => 1.1.2) - Updating symfony/debug (v3.4.30 => v3.4.35) - Updating symfony/console (v3.4.30 => v3.4.35) - Updating symfony/dotenv (v3.4.30 => v3.4.35) - Updating symfony/routing (v3.4.30 => v3.4.35) - Updating symfony/finder (v3.4.30 => v3.4.35) - Updating symfony/filesystem (v3.4.30 => v3.4.35) - Installing symfony/polyfill-util (v1.12.0) - Installing symfony/polyfill-php56 (v1.12.0) - Updating symfony/http-foundation (v3.4.30 => v3.4.35) - Updating symfony/event-dispatcher (v3.4.30 => v3.4.35) - Updating symfony/http-kernel (v3.4.30 => v3.4.35) - Updating symfony/config (v3.4.30 => v3.4.35) - Updating symfony/dependency-injection (v3.4.30 => v3.4.35) - Updating symfony/class-loader (v3.4.30 => v3.4.35) - Updating symfony/cache (v3.4.30 => v3.4.35) - Updating symfony/framework-bundle (v3.4.30 => v3.4.35) - Updating twig/twig (v1.42.2 => v1.42.4) - Updating symfony/twig-bridge (v3.4.30 => v3.4.35) - Updating symfony/twig-bundle (v3.4.30 => v3.4.35) - Updating symfony/yaml (v3.4.30 => v3.4.35) - Updating symfony/stopwatch (v3.4.30 => v3.4.35) - Updating symfony/var-dumper (v3.4.30 => v3.4.35) - Updating symfony/web-profiler-bundle (v3.4.30 => v3.4.35) - Updating symfony/css-selector (v3.4.30 => v3.4.35)
158 lines
5.0 KiB
PHP
158 lines
5.0 KiB
PHP
<?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\HttpFoundation\Request;
|
|
use Symfony\Component\Routing\RouteCollection;
|
|
use Symfony\Component\Routing\Router;
|
|
|
|
class RouterTest extends TestCase
|
|
{
|
|
private $router = null;
|
|
|
|
private $loader = null;
|
|
|
|
protected function setUp()
|
|
{
|
|
$this->loader = $this->getMockBuilder('Symfony\Component\Config\Loader\LoaderInterface')->getMock();
|
|
$this->router = new Router($this->loader, 'routing.yml');
|
|
}
|
|
|
|
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');
|
|
$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');
|
|
$this->expectExceptionMessage('The Router does not support the "option_foo" option');
|
|
$this->router->setOption('option_foo', true);
|
|
}
|
|
|
|
public function testGetOptionWithUnsupportedOption()
|
|
{
|
|
$this->expectException('InvalidArgumentException');
|
|
$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());
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideMatcherOptionsPreventingCaching
|
|
*/
|
|
public function testMatcherIsCreatedIfCacheIsNotConfigured($option)
|
|
{
|
|
$this->router->setOption($option, null);
|
|
|
|
$this->loader->expects($this->once())
|
|
->method('load')->with('routing.yml', null)
|
|
->willReturn(new RouteCollection());
|
|
|
|
$this->assertInstanceOf('Symfony\\Component\\Routing\\Matcher\\UrlMatcher', $this->router->getMatcher());
|
|
}
|
|
|
|
public function provideMatcherOptionsPreventingCaching()
|
|
{
|
|
return [
|
|
['cache_dir'],
|
|
['matcher_cache_class'],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideGeneratorOptionsPreventingCaching
|
|
*/
|
|
public function testGeneratorIsCreatedIfCacheIsNotConfigured($option)
|
|
{
|
|
$this->router->setOption($option, null);
|
|
|
|
$this->loader->expects($this->once())
|
|
->method('load')->with('routing.yml', null)
|
|
->willReturn(new RouteCollection());
|
|
|
|
$this->assertInstanceOf('Symfony\\Component\\Routing\\Generator\\UrlGenerator', $this->router->getGenerator());
|
|
}
|
|
|
|
public function provideGeneratorOptionsPreventingCaching()
|
|
{
|
|
return [
|
|
['cache_dir'],
|
|
['generator_cache_class'],
|
|
];
|
|
}
|
|
|
|
public function testMatchRequestWithUrlMatcherInterface()
|
|
{
|
|
$matcher = $this->getMockBuilder('Symfony\Component\Routing\Matcher\UrlMatcherInterface')->getMock();
|
|
$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->getMockBuilder('Symfony\Component\Routing\Matcher\RequestMatcherInterface')->getMock();
|
|
$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('/'));
|
|
}
|
|
}
|