123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?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\Tests\Component\Routing\Matcher;
- use Symfony\Component\Routing\Matcher\Exception\MethodNotAllowedException;
- use Symfony\Component\Routing\Matcher\Exception\NotFoundException;
- use Symfony\Component\Routing\Matcher\UrlMatcher;
- use Symfony\Component\Routing\Route;
- use Symfony\Component\Routing\RouteCollection;
- use Symfony\Component\Routing\RequestContext;
- class UrlMatcherTest extends \PHPUnit_Framework_TestCase
- {
- public function testNoMethodSoAllowed()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo'));
- $matcher = new UrlMatcher($coll, new RequestContext());
- $matcher->match('/foo');
- }
- public function testMethodNotAllowed()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo', array(), array('_method' => 'post')));
- $matcher = new UrlMatcher($coll, new RequestContext());
- try {
- $matcher->match('/foo');
- $this->fail();
- } catch (MethodNotAllowedException $e) {
- $this->assertEquals(array('post'), $e->getAllowedMethods());
- }
- }
- public function testMethodNotAllowedAggregatesAllowedMethods()
- {
- $coll = new RouteCollection();
- $coll->add('foo1', new Route('/foo', array(), array('_method' => 'post')));
- $coll->add('foo2', new Route('/foo', array(), array('_method' => 'put|delete')));
- $matcher = new UrlMatcher($coll, new RequestContext());
- try {
- $matcher->match('/foo');
- $this->fail();
- } catch (MethodNotAllowedException $e) {
- $this->assertEquals(array('post', 'put', 'delete'), $e->getAllowedMethods());
- }
- }
- public function testMatch()
- {
- // test the patterns are matched are parameters are returned
- $collection = new RouteCollection();
- $collection->add('foo', new Route('/foo/{bar}'));
- $matcher = new UrlMatcher($collection, new RequestContext(), array());
- try {
- $matcher->match('/no-match');
- $this->fail();
- } catch (NotFoundException $e) {}
- $this->assertEquals(array('_route' => 'foo', 'bar' => 'baz'), $matcher->match('/foo/baz'));
- // test that defaults are merged
- $collection = new RouteCollection();
- $collection->add('foo', new Route('/foo/{bar}', array('def' => 'test')));
- $matcher = new UrlMatcher($collection, new RequestContext(), array());
- $this->assertEquals(array('_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', array(), array('_method' => 'GET|head')));
- $matcher = new UrlMatcher($collection, new RequestContext(), array());
- $this->assertInternalType('array', $matcher->match('/foo'));
- // route does not match with POST method context
- $matcher = new UrlMatcher($collection, new RequestContext('', 'post'), array());
- try {
- $matcher->match('/foo');
- $this->fail();
- } catch (MethodNotAllowedException $e) {}
- // route does match with GET or HEAD method context
- $matcher = new UrlMatcher($collection, new RequestContext(), array());
- $this->assertInternalType('array', $matcher->match('/foo'));
- $matcher = new UrlMatcher($collection, new RequestContext('', 'head'), array());
- $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', array('bar' => 'bar'), array('bar' => 'foo|bar')));
- $matcher = new UrlMatcher($collection, new RequestContext(), array());
- $this->assertEquals(array('_route' => 'bar', 'bar' => 'bar'), $matcher->match('/bar/foo'));
- $this->assertEquals(array('_route' => 'bar', 'bar' => 'foo'), $matcher->match('/foo/foo'));
- $collection = new RouteCollection();
- $collection->add('bar', new Route('/{bar}', array('bar' => 'bar'), array('bar' => 'foo|bar')));
- $matcher = new UrlMatcher($collection, new RequestContext(), array());
- $this->assertEquals(array('_route' => 'bar', 'bar' => 'foo'), $matcher->match('/foo'));
- $this->assertEquals(array('_route' => 'bar', 'bar' => 'bar'), $matcher->match('/'));
- }
- public function testMatchWithPrefixes()
- {
- $collection1 = new RouteCollection();
- $collection1->add('foo', new Route('/{foo}'));
- $collection2 = new RouteCollection();
- $collection2->addCollection($collection1, '/b');
- $collection = new RouteCollection();
- $collection->addCollection($collection2, '/a');
- $matcher = new UrlMatcher($collection, new RequestContext(), array());
- $this->assertEquals(array('_route' => 'foo', 'foo' => 'foo'), $matcher->match('/a/b/foo'));
- }
- public function testMatchRegression()
- {
- $coll = new RouteCollection();
- $coll->add('foo', new Route('/foo/{foo}'));
- $coll->add('bar', new Route('/foo/bar/{foo}'));
- $matcher = new UrlMatcher($coll, new RequestContext());
- $this->assertEquals(array('foo' => 'bar', '_route' => 'bar'), $matcher->match('/foo/bar/bar'));
- $collection = new RouteCollection();
- $collection->add('foo', new Route('/{bar}'));
- $matcher = new UrlMatcher($collection, new RequestContext(), array());
- try {
- $matcher->match('/');
- $this->fail();
- } catch (NotFoundException $e) {
- }
- }
- }
|