12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?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;
- use Symfony\Component\Routing\Route;
- use Symfony\Component\Routing\RouteCollection;
- use Symfony\Component\Routing\Matcher\Dumper\ApacheMatcherDumper;
- class ApacheMatcherDumperTest extends \PHPUnit_Framework_TestCase
- {
- static protected $fixturesPath;
- static public function setUpBeforeClass()
- {
- self::$fixturesPath = realpath(__DIR__.'/../../Fixtures/');
- }
- public function testDump()
- {
- $collection = new RouteCollection();
- // defaults and requirements
- $collection->add('foo', new Route(
- '/foo/{bar}',
- array('def' => 'test'),
- array('bar' => 'baz|symfony')
- ));
- // method requirement
- $collection->add('bar', new Route(
- '/bar/{foo}',
- array(),
- array('_method' => 'GET|head')
- ));
- // simple
- $collection->add('baz', new Route(
- '/test/baz'
- ));
- // simple with extension
- $collection->add('baz2', new Route(
- '/test/baz.html'
- ));
- // trailing slash
- $collection->add('baz3', new Route(
- '/test/baz3/'
- ));
- // trailing slash with variable
- $collection->add('baz4', new Route(
- '/test/{foo}/'
- ));
- // trailing slash and method
- $collection->add('baz5', new Route(
- '/test/{foo}/',
- array(),
- array('_method' => 'post')
- ));
- $dumper = new ApacheMatcherDumper($collection);
- $this->assertStringEqualsFile(self::$fixturesPath.'/dumper/url_matcher1.apache', $dumper->dump(), '->dump() dumps basic routes to the correct apache format.');
- }
- }
|