public function UrlMatcherTest::testOptionalVariableWithNoRealSeparator in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/routing/Tests/Matcher/UrlMatcherTest.php \Symfony\Component\Routing\Tests\Matcher\UrlMatcherTest::testOptionalVariableWithNoRealSeparator()
File
- vendor/
symfony/ routing/ Tests/ Matcher/ UrlMatcherTest.php, line 258
Class
Namespace
Symfony\Component\Routing\Tests\MatcherCode
public function testOptionalVariableWithNoRealSeparator() {
$coll = new RouteCollection();
$coll
->add('test', new Route('/get{what}', array(
'what' => 'All',
)));
$matcher = new UrlMatcher($coll, new RequestContext());
$this
->assertEquals(array(
'what' => 'All',
'_route' => 'test',
), $matcher
->match('/get'));
$this
->assertEquals(array(
'what' => 'Sites',
'_route' => 'test',
), $matcher
->match('/getSites'));
// Usually the character in front of an optional parameter can be left out, e.g. with pattern '/get/{what}' just '/get' would match.
// But here the 't' in 'get' is not a separating character, so it makes no sense to match without it.
$this
->setExpectedException('Symfony\\Component\\Routing\\Exception\\ResourceNotFoundException');
$matcher
->match('/ge');
}