123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764 |
- <?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\Matcher;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\Routing\Exception\MethodNotAllowedException;
- use Symfony\Component\Routing\Exception\ResourceNotFoundException;
- use Symfony\Component\Routing\Matcher\UrlMatcher;
- use Symfony\Component\Routing\RequestContext;
- use Symfony\Component\Routing\Route;
- use Symfony\Component\Routing\RouteCollection;
- class UrlMatcherTest extends TestCase
- {
- public function testNoMethodSoAllowed()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo'));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertInternalType('array', $matcher->match('/foo'));
- }
- public function testMethodNotAllowed()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo', [], [], [], '', [], ['post']));
- $matcher = $this->getUrlMatcher($coll);
- try {
- $matcher->match('/foo');
- $this->fail();
- } catch (MethodNotAllowedException $e) {
- $this->assertEquals(['POST'], $e->getAllowedMethods());
- }
- }
- public function testMethodNotAllowedOnRoot()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/', [], [], [], '', [], ['GET']));
- $matcher = $this->getUrlMatcher($coll, new RequestContext('', 'POST'));
- try {
- $matcher->match('/');
- $this->fail();
- } catch (MethodNotAllowedException $e) {
- $this->assertEquals(['GET'], $e->getAllowedMethods());
- }
- }
- public function testHeadAllowedWhenRequirementContainsGet()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo', [], [], [], '', [], ['get']));
- $matcher = $this->getUrlMatcher($coll, new RequestContext('', 'head'));
- $this->assertInternalType('array', $matcher->match('/foo'));
- }
- public function testMethodNotAllowedAggregatesAllowedMethods()
- {
- $coll = new RouteCollection();
- $coll->add('foo1', new Route('/foo', [], [], [], '', [], ['post']));
- $coll->add('foo2', new Route('/foo', [], [], [], '', [], ['put', 'delete']));
- $matcher = $this->getUrlMatcher($coll);
- try {
- $matcher->match('/foo');
- $this->fail();
- } catch (MethodNotAllowedException $e) {
- $this->assertEquals(['POST', 'PUT', 'DELETE'], $e->getAllowedMethods());
- }
- }
- public function testMatch()
- {
- // test the patterns are matched and parameters are returned
- $collection = new RouteCollection();
- $collection->add('foo', new Route('/foo/{bar}'));
- $matcher = $this->getUrlMatcher($collection);
- try {
- $matcher->match('/no-match');
- $this->fail();
- } catch (ResourceNotFoundException $e) {
- }
- $this->assertEquals(['_route' => 'foo', 'bar' => 'baz'], $matcher->match('/foo/baz'));
- // test that defaults are merged
- $collection = new RouteCollection();
- $collection->add('foo', new Route('/foo/{bar}', ['def' => 'test']));
- $matcher = $this->getUrlMatcher($collection);
- $this->assertEquals(['_route' => 'foo', 'bar' => 'baz', 'def' => 'test'], $matcher->match('/foo/baz'));
- // test that route "method" is ignored if no method is given in the context
- $collection = new RouteCollection();
- $collection->add('foo', new Route('/foo', [], [], [], '', [], ['get', 'head']));
- $matcher = $this->getUrlMatcher($collection);
- $this->assertInternalType('array', $matcher->match('/foo'));
- // route does not match with POST method context
- $matcher = $this->getUrlMatcher($collection, new RequestContext('', 'post'));
- try {
- $matcher->match('/foo');
- $this->fail();
- } catch (MethodNotAllowedException $e) {
- }
- // route does match with GET or HEAD method context
- $matcher = $this->getUrlMatcher($collection);
- $this->assertInternalType('array', $matcher->match('/foo'));
- $matcher = $this->getUrlMatcher($collection, new RequestContext('', 'head'));
- $this->assertInternalType('array', $matcher->match('/foo'));
- // route with an optional variable as the first segment
- $collection = new RouteCollection();
- $collection->add('bar', new Route('/{bar}/foo', ['bar' => 'bar'], ['bar' => 'foo|bar']));
- $matcher = $this->getUrlMatcher($collection);
- $this->assertEquals(['_route' => 'bar', 'bar' => 'bar'], $matcher->match('/bar/foo'));
- $this->assertEquals(['_route' => 'bar', 'bar' => 'foo'], $matcher->match('/foo/foo'));
- $collection = new RouteCollection();
- $collection->add('bar', new Route('/{bar}', ['bar' => 'bar'], ['bar' => 'foo|bar']));
- $matcher = $this->getUrlMatcher($collection);
- $this->assertEquals(['_route' => 'bar', 'bar' => 'foo'], $matcher->match('/foo'));
- $this->assertEquals(['_route' => 'bar', 'bar' => 'bar'], $matcher->match('/'));
- // route with only optional variables
- $collection = new RouteCollection();
- $collection->add('bar', new Route('/{foo}/{bar}', ['foo' => 'foo', 'bar' => 'bar'], []));
- $matcher = $this->getUrlMatcher($collection);
- $this->assertEquals(['_route' => 'bar', 'foo' => 'foo', 'bar' => 'bar'], $matcher->match('/'));
- $this->assertEquals(['_route' => 'bar', 'foo' => 'a', 'bar' => 'bar'], $matcher->match('/a'));
- $this->assertEquals(['_route' => 'bar', 'foo' => 'a', 'bar' => 'b'], $matcher->match('/a/b'));
- }
- public function testMatchWithPrefixes()
- {
- $collection = new RouteCollection();
- $collection->add('foo', new Route('/{foo}'));
- $collection->addPrefix('/b');
- $collection->addPrefix('/a');
- $matcher = $this->getUrlMatcher($collection);
- $this->assertEquals(['_route' => 'foo', 'foo' => 'foo'], $matcher->match('/a/b/foo'));
- }
- public function testMatchWithDynamicPrefix()
- {
- $collection = new RouteCollection();
- $collection->add('foo', new Route('/{foo}'));
- $collection->addPrefix('/b');
- $collection->addPrefix('/{_locale}');
- $matcher = $this->getUrlMatcher($collection);
- $this->assertEquals(['_locale' => 'fr', '_route' => 'foo', 'foo' => 'foo'], $matcher->match('/fr/b/foo'));
- }
- public function testMatchSpecialRouteName()
- {
- $collection = new RouteCollection();
- $collection->add('$péß^a|', new Route('/bar'));
- $matcher = $this->getUrlMatcher($collection);
- $this->assertEquals(['_route' => '$péß^a|'], $matcher->match('/bar'));
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
- */
- public function testTrailingEncodedNewlineIsNotOverlooked()
- {
- $collection = new RouteCollection();
- $collection->add('foo', new Route('/foo'));
- $matcher = $this->getUrlMatcher($collection);
- $matcher->match('/foo%0a');
- }
- public function testMatchNonAlpha()
- {
- $collection = new RouteCollection();
- $chars = '!"$%éà &\'()*+,./:;<=>@ABCDEFGHIJKLMNOPQRSTUVWXYZ\\[]^_`abcdefghijklmnopqrstuvwxyz{|}~-';
- $collection->add('foo', new Route('/{foo}/bar', [], ['foo' => '['.preg_quote($chars).']+'], ['utf8' => true]));
- $matcher = $this->getUrlMatcher($collection);
- $this->assertEquals(['_route' => 'foo', 'foo' => $chars], $matcher->match('/'.rawurlencode($chars).'/bar'));
- $this->assertEquals(['_route' => 'foo', 'foo' => $chars], $matcher->match('/'.strtr($chars, ['%' => '%25']).'/bar'));
- }
- public function testMatchWithDotMetacharacterInRequirements()
- {
- $collection = new RouteCollection();
- $collection->add('foo', new Route('/{foo}/bar', [], ['foo' => '.+']));
- $matcher = $this->getUrlMatcher($collection);
- $this->assertEquals(['_route' => 'foo', 'foo' => "\n"], $matcher->match('/'.urlencode("\n").'/bar'), 'linefeed character is matched');
- }
- public function testMatchOverriddenRoute()
- {
- $collection = new RouteCollection();
- $collection->add('foo', new Route('/foo'));
- $collection1 = new RouteCollection();
- $collection1->add('foo', new Route('/foo1'));
- $collection->addCollection($collection1);
- $matcher = $this->getUrlMatcher($collection);
- $this->assertEquals(['_route' => 'foo'], $matcher->match('/foo1'));
- $this->{method_exists($this, $_ = 'expectException') ? $_ : 'setExpectedException'}('Symfony\Component\Routing\Exception\ResourceNotFoundException');
- $this->assertEquals([], $matcher->match('/foo'));
- }
- public function testMatchRegression()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo/{foo}'));
- $coll->add('bar', new Route('/foo/bar/{foo}'));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['foo' => 'bar', '_route' => 'bar'], $matcher->match('/foo/bar/bar'));
- $collection = new RouteCollection();
- $collection->add('foo', new Route('/{bar}'));
- $matcher = $this->getUrlMatcher($collection);
- try {
- $matcher->match('/');
- $this->fail();
- } catch (ResourceNotFoundException $e) {
- }
- }
- public function testMultipleParams()
- {
- $coll = new RouteCollection();
- $coll->add('foo1', new Route('/foo/{a}/{b}'));
- $coll->add('foo2', new Route('/foo/{a}/test/test/{b}'));
- $coll->add('foo3', new Route('/foo/{a}/{b}/{c}/{d}'));
- $route = $this->getUrlMatcher($coll)->match('/foo/test/test/test/bar')['_route'];
- $this->assertEquals('foo2', $route);
- }
- public function testDefaultRequirementForOptionalVariables()
- {
- $coll = new RouteCollection();
- $coll->add('test', new Route('/{page}.{_format}', ['page' => 'index', '_format' => 'html']));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['page' => 'my-page', '_format' => 'xml', '_route' => 'test'], $matcher->match('/my-page.xml'));
- }
- public function testMatchingIsEager()
- {
- $coll = new RouteCollection();
- $coll->add('test', new Route('/{foo}-{bar}-', [], ['foo' => '.+', 'bar' => '.+']));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['foo' => 'text1-text2-text3', 'bar' => 'text4', '_route' => 'test'], $matcher->match('/text1-text2-text3-text4-'));
- }
- public function testAdjacentVariables()
- {
- $coll = new RouteCollection();
- $coll->add('test', new Route('/{w}{x}{y}{z}.{_format}', ['z' => 'default-z', '_format' => 'html'], ['y' => 'y|Y']));
- $matcher = $this->getUrlMatcher($coll);
- // 'w' eagerly matches as much as possible and the other variables match the remaining chars.
- // This also shows that the variables w-z must all exclude the separating char (the dot '.' in this case) by default requirement.
- // Otherwise they would also consume '.xml' and _format would never match as it's an optional variable.
- $this->assertEquals(['w' => 'wwwww', 'x' => 'x', 'y' => 'Y', 'z' => 'Z', '_format' => 'xml', '_route' => 'test'], $matcher->match('/wwwwwxYZ.xml'));
- // As 'y' has custom requirement and can only be of value 'y|Y', it will leave 'ZZZ' to variable z.
- // So with carefully chosen requirements adjacent variables, can be useful.
- $this->assertEquals(['w' => 'wwwww', 'x' => 'x', 'y' => 'y', 'z' => 'ZZZ', '_format' => 'html', '_route' => 'test'], $matcher->match('/wwwwwxyZZZ'));
- // z and _format are optional.
- $this->assertEquals(['w' => 'wwwww', 'x' => 'x', 'y' => 'y', 'z' => 'default-z', '_format' => 'html', '_route' => 'test'], $matcher->match('/wwwwwxy'));
- $this->{method_exists($this, $_ = 'expectException') ? $_ : 'setExpectedException'}('Symfony\Component\Routing\Exception\ResourceNotFoundException');
- $matcher->match('/wxy.html');
- }
- public function testOptionalVariableWithNoRealSeparator()
- {
- $coll = new RouteCollection();
- $coll->add('test', new Route('/get{what}', ['what' => 'All']));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['what' => 'All', '_route' => 'test'], $matcher->match('/get'));
- $this->assertEquals(['what' => 'Sites', '_route' => 'test'], $matcher->match('/getSites'));
- // Usually the character in front of an optional parameter can be left out, e.g. with pattern '/get/{what}' just '/get' would match.
- // But here the 't' in 'get' is not a separating character, so it makes no sense to match without it.
- $this->{method_exists($this, $_ = 'expectException') ? $_ : 'setExpectedException'}('Symfony\Component\Routing\Exception\ResourceNotFoundException');
- $matcher->match('/ge');
- }
- public function testRequiredVariableWithNoRealSeparator()
- {
- $coll = new RouteCollection();
- $coll->add('test', new Route('/get{what}Suffix'));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['what' => 'Sites', '_route' => 'test'], $matcher->match('/getSitesSuffix'));
- }
- public function testDefaultRequirementOfVariable()
- {
- $coll = new RouteCollection();
- $coll->add('test', new Route('/{page}.{_format}'));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['page' => 'index', '_format' => 'mobile.html', '_route' => 'test'], $matcher->match('/index.mobile.html'));
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
- */
- public function testDefaultRequirementOfVariableDisallowsSlash()
- {
- $coll = new RouteCollection();
- $coll->add('test', new Route('/{page}.{_format}'));
- $matcher = $this->getUrlMatcher($coll);
- $matcher->match('/index.sl/ash');
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
- */
- public function testDefaultRequirementOfVariableDisallowsNextSeparator()
- {
- $coll = new RouteCollection();
- $coll->add('test', new Route('/{page}.{_format}', [], ['_format' => 'html|xml']));
- $matcher = $this->getUrlMatcher($coll);
- $matcher->match('/do.t.html');
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
- */
- public function testMissingTrailingSlash()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo/'));
- $matcher = $this->getUrlMatcher($coll);
- $matcher->match('/foo');
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
- */
- public function testExtraTrailingSlash()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo'));
- $matcher = $this->getUrlMatcher($coll);
- $matcher->match('/foo/');
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
- */
- public function testMissingTrailingSlashForNonSafeMethod()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo/'));
- $context = new RequestContext();
- $context->setMethod('POST');
- $matcher = $this->getUrlMatcher($coll, $context);
- $matcher->match('/foo');
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
- */
- public function testExtraTrailingSlashForNonSafeMethod()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo'));
- $context = new RequestContext();
- $context->setMethod('POST');
- $matcher = $this->getUrlMatcher($coll, $context);
- $matcher->match('/foo/');
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
- */
- public function testSchemeRequirement()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo', [], [], [], '', ['https']));
- $matcher = $this->getUrlMatcher($coll);
- $matcher->match('/foo');
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
- */
- public function testSchemeRequirementForNonSafeMethod()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo', [], [], [], '', ['https']));
- $context = new RequestContext();
- $context->setMethod('POST');
- $matcher = $this->getUrlMatcher($coll, $context);
- $matcher->match('/foo');
- }
- public function testSamePathWithDifferentScheme()
- {
- $coll = new RouteCollection();
- $coll->add('https_route', new Route('/', [], [], [], '', ['https']));
- $coll->add('http_route', new Route('/', [], [], [], '', ['http']));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['_route' => 'http_route'], $matcher->match('/'));
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
- */
- public function testCondition()
- {
- $coll = new RouteCollection();
- $route = new Route('/foo');
- $route->setCondition('context.getMethod() == "POST"');
- $coll->add('foo', $route);
- $matcher = $this->getUrlMatcher($coll);
- $matcher->match('/foo');
- }
- public function testRequestCondition()
- {
- $coll = new RouteCollection();
- $route = new Route('/foo/{bar}');
- $route->setCondition('request.getBaseUrl() == "/bar"');
- $coll->add('bar', $route);
- $route = new Route('/foo/{bar}');
- $route->setCondition('request.getBaseUrl() == "/sub/front.php" and request.getPathInfo() == "/foo/bar"');
- $coll->add('foo', $route);
- $matcher = $this->getUrlMatcher($coll, new RequestContext('/sub/front.php'));
- $this->assertEquals(['bar' => 'bar', '_route' => 'foo'], $matcher->match('/foo/bar'));
- }
- public function testDecodeOnce()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo/{foo}'));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['foo' => 'bar%23', '_route' => 'foo'], $matcher->match('/foo/bar%2523'));
- }
- public function testCannotRelyOnPrefix()
- {
- $coll = new RouteCollection();
- $subColl = new RouteCollection();
- $subColl->add('bar', new Route('/bar'));
- $subColl->addPrefix('/prefix');
- // overwrite the pattern, so the prefix is not valid anymore for this route in the collection
- $subColl->get('bar')->setPath('/new');
- $coll->addCollection($subColl);
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['_route' => 'bar'], $matcher->match('/new'));
- }
- public function testWithHost()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo/{foo}', [], [], [], '{locale}.example.com'));
- $matcher = $this->getUrlMatcher($coll, new RequestContext('', 'GET', 'en.example.com'));
- $this->assertEquals(['foo' => 'bar', '_route' => 'foo', 'locale' => 'en'], $matcher->match('/foo/bar'));
- }
- public function testWithHostOnRouteCollection()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo/{foo}'));
- $coll->add('bar', new Route('/bar/{foo}', [], [], [], '{locale}.example.net'));
- $coll->setHost('{locale}.example.com');
- $matcher = $this->getUrlMatcher($coll, new RequestContext('', 'GET', 'en.example.com'));
- $this->assertEquals(['foo' => 'bar', '_route' => 'foo', 'locale' => 'en'], $matcher->match('/foo/bar'));
- $matcher = $this->getUrlMatcher($coll, new RequestContext('', 'GET', 'en.example.com'));
- $this->assertEquals(['foo' => 'bar', '_route' => 'bar', 'locale' => 'en'], $matcher->match('/bar/bar'));
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
- */
- public function testWithOutHostHostDoesNotMatch()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo/{foo}', [], [], [], '{locale}.example.com'));
- $matcher = $this->getUrlMatcher($coll, new RequestContext('', 'GET', 'example.com'));
- $matcher->match('/foo/bar');
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
- */
- public function testPathIsCaseSensitive()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/locale', [], ['locale' => 'EN|FR|DE']));
- $matcher = $this->getUrlMatcher($coll);
- $matcher->match('/en');
- }
- public function testHostIsCaseInsensitive()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/', [], ['locale' => 'EN|FR|DE'], [], '{locale}.example.com'));
- $matcher = $this->getUrlMatcher($coll, new RequestContext('', 'GET', 'en.example.com'));
- $this->assertEquals(['_route' => 'foo', 'locale' => 'en'], $matcher->match('/'));
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\NoConfigurationException
- */
- public function testNoConfiguration()
- {
- $coll = new RouteCollection();
- $matcher = $this->getUrlMatcher($coll);
- $matcher->match('/');
- }
- public function testNestedCollections()
- {
- $coll = new RouteCollection();
- $subColl = new RouteCollection();
- $subColl->add('a', new Route('/a'));
- $subColl->add('b', new Route('/b'));
- $subColl->add('c', new Route('/c'));
- $subColl->addPrefix('/p');
- $coll->addCollection($subColl);
- $coll->add('baz', new Route('/{baz}'));
- $subColl = new RouteCollection();
- $subColl->add('buz', new Route('/buz'));
- $subColl->addPrefix('/prefix');
- $coll->addCollection($subColl);
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['_route' => 'a'], $matcher->match('/p/a'));
- $this->assertEquals(['_route' => 'baz', 'baz' => 'p'], $matcher->match('/p'));
- $this->assertEquals(['_route' => 'buz'], $matcher->match('/prefix/buz'));
- }
- /**
- * @expectedException \Symfony\Component\Routing\Exception\ResourceNotFoundException
- */
- public function testSchemeAndMethodMismatch()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/', [], [], [], null, ['https'], ['POST']));
- $matcher = $this->getUrlMatcher($coll);
- $matcher->match('/');
- }
- public function testSiblingRoutes()
- {
- $coll = new RouteCollection();
- $coll->add('a', (new Route('/a{a}'))->setMethods('POST'));
- $coll->add('b', (new Route('/a{a}'))->setMethods('PUT'));
- $coll->add('c', new Route('/a{a}'));
- $coll->add('d', (new Route('/b{a}'))->setCondition('false'));
- $coll->add('e', (new Route('/{b}{a}'))->setCondition('false'));
- $coll->add('f', (new Route('/{b}{a}'))->setRequirements(['b' => 'b']));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['_route' => 'c', 'a' => 'a'], $matcher->match('/aa'));
- $this->assertEquals(['_route' => 'f', 'b' => 'b', 'a' => 'a'], $matcher->match('/ba'));
- }
- public function testUnicodeRoute()
- {
- $coll = new RouteCollection();
- $coll->add('a', new Route('/{a}', [], ['a' => '.'], ['utf8' => false]));
- $coll->add('b', new Route('/{a}', [], ['a' => '.'], ['utf8' => true]));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['_route' => 'b', 'a' => 'é'], $matcher->match('/é'));
- }
- public function testRequirementWithCapturingGroup()
- {
- $coll = new RouteCollection();
- $coll->add('a', new Route('/{a}/{b}', [], ['a' => '(a|b)']));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['_route' => 'a', 'a' => 'a', 'b' => 'b'], $matcher->match('/a/b'));
- }
- public function testDotAllWithCatchAll()
- {
- $coll = new RouteCollection();
- $coll->add('a', new Route('/{id}.html', [], ['id' => '.+']));
- $coll->add('b', new Route('/{all}', [], ['all' => '.+']));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['_route' => 'a', 'id' => 'foo/bar'], $matcher->match('/foo/bar.html'));
- }
- public function testHostPattern()
- {
- $coll = new RouteCollection();
- $coll->add('a', new Route('/{app}/{action}/{unused}', [], [], [], '{host}'));
- $expected = [
- '_route' => 'a',
- 'app' => 'an_app',
- 'action' => 'an_action',
- 'unused' => 'unused',
- 'host' => 'foo',
- ];
- $matcher = $this->getUrlMatcher($coll, new RequestContext('', 'GET', 'foo'));
- $this->assertEquals($expected, $matcher->match('/an_app/an_action/unused'));
- }
- public function testUtf8Prefix()
- {
- $coll = new RouteCollection();
- $coll->add('a', new Route('/é{foo}', [], [], ['utf8' => true]));
- $coll->add('b', new Route('/è{bar}', [], [], ['utf8' => true]));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals('a', $matcher->match('/éo')['_route']);
- }
- public function testUtf8AndMethodMatching()
- {
- $coll = new RouteCollection();
- $coll->add('a', new Route('/admin/api/list/{shortClassName}/{id}.{_format}', [], [], ['utf8' => true], '', [], ['PUT']));
- $coll->add('b', new Route('/admin/api/package.{_format}', [], [], [], '', [], ['POST']));
- $coll->add('c', new Route('/admin/api/package.{_format}', ['_format' => 'json'], [], [], '', [], ['GET']));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals('c', $matcher->match('/admin/api/package.json')['_route']);
- }
- public function testHostWithDot()
- {
- $coll = new RouteCollection();
- $coll->add('a', new Route('/foo', [], [], [], 'foo.example.com'));
- $coll->add('b', new Route('/bar/{baz}'));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals('b', $matcher->match('/bar/abc.123')['_route']);
- }
- public function testSlashVariant()
- {
- $coll = new RouteCollection();
- $coll->add('a', new Route('/foo/{bar}', [], ['bar' => '.*']));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals('a', $matcher->match('/foo/')['_route']);
- }
- public function testSlashVariant2()
- {
- $coll = new RouteCollection();
- $coll->add('a', new Route('/foo/{bar}/', [], ['bar' => '.*']));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['_route' => 'a', 'bar' => 'bar'], $matcher->match('/foo/bar/'));
- }
- public function testSlashWithVerb()
- {
- $coll = new RouteCollection();
- $coll->add('a', new Route('/{foo}', [], [], [], '', [], ['put', 'delete']));
- $coll->add('b', new Route('/bar/'));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertSame(['_route' => 'b'], $matcher->match('/bar/'));
- $coll = new RouteCollection();
- $coll->add('a', new Route('/dav/{foo}', [], ['foo' => '.*'], [], '', [], ['GET', 'OPTIONS']));
- $matcher = $this->getUrlMatcher($coll, new RequestContext('', 'OPTIONS'));
- $expected = [
- '_route' => 'a',
- 'foo' => 'files/bar/',
- ];
- $this->assertEquals($expected, $matcher->match('/dav/files/bar/'));
- }
- public function testSlashAndVerbPrecedence()
- {
- $coll = new RouteCollection();
- $coll->add('a', new Route('/api/customers/{customerId}/contactpersons/', [], [], [], '', [], ['post']));
- $coll->add('b', new Route('/api/customers/{customerId}/contactpersons', [], [], [], '', [], ['get']));
- $matcher = $this->getUrlMatcher($coll);
- $expected = [
- '_route' => 'b',
- 'customerId' => '123',
- ];
- $this->assertEquals($expected, $matcher->match('/api/customers/123/contactpersons'));
- $coll = new RouteCollection();
- $coll->add('a', new Route('/api/customers/{customerId}/contactpersons/', [], [], [], '', [], ['get']));
- $coll->add('b', new Route('/api/customers/{customerId}/contactpersons', [], [], [], '', [], ['post']));
- $matcher = $this->getUrlMatcher($coll, new RequestContext('', 'POST'));
- $expected = [
- '_route' => 'b',
- 'customerId' => '123',
- ];
- $this->assertEquals($expected, $matcher->match('/api/customers/123/contactpersons'));
- }
- public function testGreedyTrailingRequirement()
- {
- $coll = new RouteCollection();
- $coll->add('a', new Route('/{a}', [], ['a' => '.+']));
- $matcher = $this->getUrlMatcher($coll);
- $this->assertEquals(['_route' => 'a', 'a' => 'foo'], $matcher->match('/foo'));
- $this->assertEquals(['_route' => 'a', 'a' => 'foo/'], $matcher->match('/foo/'));
- }
- protected function getUrlMatcher(RouteCollection $routes, RequestContext $context = null)
- {
- return new UrlMatcher($routes, $context ?: new RequestContext());
- }
- }
|