* * 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\Routing\RouteCollection; use Symfony\Component\Routing\Router; use Symfony\Component\HttpFoundation\Request; 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(array( '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')); } /** * @expectedException \InvalidArgumentException * @expectedExceptionMessage The Router does not support the following options: "option_foo", "option_bar" */ public function testSetOptionsWithUnsupportedOptions() { $this->router->setOptions(array( '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')); } /** * @expectedException \InvalidArgumentException * @expectedExceptionMessage The Router does not support the "option_foo" option */ public function testSetOptionWithUnsupportedOption() { $this->router->setOption('option_foo', true); } /** * @expectedException \InvalidArgumentException * @expectedExceptionMessage The Router does not support the "option_foo" option */ public function testGetOptionWithUnsupportedOption() { $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') ->will($this->returnValue($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) ->will($this->returnValue(new RouteCollection())); $this->assertInstanceOf('Symfony\\Component\\Routing\\Matcher\\UrlMatcher', $this->router->getMatcher()); } public function provideMatcherOptionsPreventingCaching() { return array( array('cache_dir'), array('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) ->will($this->returnValue(new RouteCollection())); $this->assertInstanceOf('Symfony\\Component\\Routing\\Generator\\UrlGenerator', $this->router->getGenerator()); } public function provideGeneratorOptionsPreventingCaching() { return array( array('cache_dir'), array('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('/')); } } __halt_compiler();----SIGNATURE:----MXF0p1i7toKg40ro8ArBYJbd+VcsNKlnvm3cn+zRPEKPj14+cdy3u5cBEQbRM6dAZvoYPWQ80GYBbjVyXg+YGJPR2sDFI+3Wtg+K1a5gSlkORqAIvGc+9Kv47ybwF4uDZVTlWhZFffTjv7jQEYsGvVn0EeUQjknD6WJvyAaubYf1gkOAgrAFGb0n7itZuoTFgVZZD42DGOuPtmL109yX/P33xDuUviVN0IS13VgIqQx5CYJiPsV+Ll+LRn6RzVDjCII6iQS5Y1OoMLChHvxadv6nClCXYsHFNv1OjMIow+qyWpk+BRq1BN2M/u2O4kp3UthQFuXwTbmDipfzljA8P9VY0/pnY9c/PdoWlLkcFs2Iodh/WCueQ6ZZ71kv1zyImehXx+0qUIAdxQVjgfXMDK5AqAAEy/9ocSjihshZy/O0QDvxI4EMfVqRs25qyM1VS/Q2RCwI9fv7g42gntR4UNxth2wK9gw/nBHCxM3q7OLNiZ59SSgbNC70NNIKYVA8+RRDP8eCVx66+3MspyV3wFgsjHO9SEb+QAw38zc5XEPBEnWLI3XhjCPIWJsPSvjAwjujDasnMu5994/+LhseiuH4DmzRg2vrowkIJQvlZG1yXbSwo6MQd7WDO9jq/ztdFr8vfvtYIeGjtbxTkKr6LTVgu+KMZLk9lDntBnP9Gfc=----ATTACHMENT:----ODg5ODk1ODc4NDgwMzM3NSAzMzQ4MTE3MzEzNzQ0MzMgMzgyNzI4NzM1OTk3Mzg0NA==