public function UrlGeneratorTest::testUrlGenerationWithDisabledPathProcessing in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php \Drupal\Tests\Core\Routing\UrlGeneratorTest::testUrlGenerationWithDisabledPathProcessing()
- 10 core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php \Drupal\Tests\Core\Routing\UrlGeneratorTest::testUrlGenerationWithDisabledPathProcessing()
@covers ::generateFromRoute
File
- core/
tests/ Drupal/ Tests/ Core/ Routing/ UrlGeneratorTest.php, line 247
Class
- UrlGeneratorTest
- Confirm that the UrlGenerator is functioning properly.
Namespace
Drupal\Tests\Core\RoutingCode
public function testUrlGenerationWithDisabledPathProcessing() {
$path_processor = $this
->prophesize(OutboundPathProcessorInterface::class);
$path_processor
->processOutbound(Argument::cetera())
->shouldNotBeCalled();
$generator = new UrlGenerator($this->provider, $path_processor
->reveal(), $this->routeProcessorManager, $this->requestStack, [
'http',
'https',
]);
$generator
->setContext($this->context);
$url = $this->generator
->generateFromRoute('test_1', [], [
'path_processing' => FALSE,
]);
$this
->assertEquals('/test/one', $url);
}