public function UrlMatcherTest::testMatchWithDotMetacharacterInRequirements

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Matcher/UrlMatcherTest.php, line 173

Class

UrlMatcherTest

Namespace

Symfony\Component\Routing\Tests\Matcher

Code

public function testMatchWithDotMetacharacterInRequirements() {
  $collection = new RouteCollection();
  $collection
    ->add('foo', new Route('/{foo}/bar', array(), array(
    'foo' => '.+',
  )));
  $matcher = new UrlMatcher($collection, new RequestContext());
  $this
    ->assertEquals(array(
    '_route' => 'foo',
    'foo' => "\n",
  ), $matcher
    ->match('/' . urlencode("\n") . '/bar'), 'linefeed character is matched');
}