File
- drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php, line 312
Class
- UrlGeneratorTest
Namespace
Symfony\Component\Routing\Tests\Generator
Code
public function testUrlEncoding() {
$chars = '@:[]/()*\'" +,;-._~&$<>|{}%\\^`!?foo=bar#id';
$routes = $this
->getRoutes('test', new Route("/{$chars}/{varpath}", array(), array(
'varpath' => '.+',
)));
$this
->assertSame('/app.php/@:%5B%5D/%28%29*%27%22%20+,;-._~%26%24%3C%3E|%7B%7D%25%5C%5E%60!%3Ffoo=bar%23id' . '/@:%5B%5D/%28%29*%27%22%20+,;-._~%26%24%3C%3E|%7B%7D%25%5C%5E%60!%3Ffoo=bar%23id' . '?query=%40%3A%5B%5D%2F%28%29%2A%27%22+%2B%2C%3B-._%7E%26%24%3C%3E%7C%7B%7D%25%5C%5E%60%21%3Ffoo%3Dbar%23id', $this
->getGenerator($routes)
->generate('test', array(
'varpath' => $chars,
'query' => $chars,
)));
}