merged lsmith77/url_generator_null_parameter

This commit is contained in:
Fabien Potencier 2011-04-19 14:21:11 +02:00
commit 2014ff6856
2 changed files with 20 additions and 2 deletions

View File

@ -99,8 +99,11 @@ class UrlGenerator implements UrlGeneratorInterface
throw new \InvalidArgumentException(sprintf('Parameter "%s" for route "%s" must match "%s" ("%s" given).', $token[3], $name, $requirements[$token[3]], $tparams[$token[3]]));
}
// %2F is not valid in a URL, so we don't encode it (which is fine as the requirements explicitely allowed it)
$url = $token[1].str_replace('%2F', '/', urlencode($tparams[$token[3]])).$url;
if (isset($tparams[$token[3]])) {
// %2F is not valid in a URL, so we don't encode it (which is fine as the requirements explicitly allowed it)
$url = $token[1].str_replace('%2F', '/', urlencode($tparams[$token[3]])).$url;
}
$optional = false;
}
} elseif ('text' === $token[0]) {

View File

@ -120,6 +120,21 @@ class UrlGeneratorTest extends \PHPUnit_Framework_TestCase
$this->assertEquals('/app.php/testing/bar', $url);
}
public function testRelativeUrlWithNullParameter()
{
$this->routeCollection->add('test', new Route('/testing.{format}', array('format' => null)));
$this->generator->setContext(array(
'base_url'=>'/app.php',
'method'=>'GET',
'host'=>'localhost',
'port'=>80,
'is_secure'=>false));
$url = $this->generator->generate('test', array(), false);
$this->assertEquals('/app.php/testing', $url);
}
public function testRelativeUrlWithExtraParameters()
{
$this->routeCollection->add('test', new Route('/testing'));