123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.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\PhpMatcherDumper;
- class PhpMatcherDumperTest extends \PHPUnit_Framework_TestCase
- {
- static protected $fixturesPath;
- static public function setUpBeforeClass()
- {
- self::$fixturesPath = realpath(__DIR__.'/../../Fixtures/');
- }
- public function testDump()
- {
- $collection = new RouteCollection();
- $collection->add('foo', new Route(
- '/foo/:bar',
- array('def' => 'test'),
- array('bar' => 'baz|symfony')
- ));
- $collection->add('bar', new Route(
- '/bar/:foo',
- array(),
- array('_method' => 'GET|head')
- ));
- $collection->add('baz', new Route(
- '/test/baz'
- ));
- $collection->add('baz2', new Route(
- '/test/baz.html'
- ));
- $dumper = new PhpMatcherDumper($collection);
- $this->assertStringEqualsFile(self::$fixturesPath.'/dumper/url_matcher1.php', $dumper->dump(), '->dump() dumps basic routes to the correct PHP file.');
- }
- }
|