You are here

public function UrlMatcherTest::testMatchWithDotMetacharacterInRequirements in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/routing/Tests/Matcher/UrlMatcherTest.php \Symfony\Component\Routing\Tests\Matcher\UrlMatcherTest::testMatchWithDotMetacharacterInRequirements()

File

vendor/symfony/routing/Tests/Matcher/UrlMatcherTest.php, line 175

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');
}