You are here

public function UrlGeneratorTest::testUrlGenerationWithDisabledPathProcessingByRoute in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php \Drupal\Tests\Core\Routing\UrlGeneratorTest::testUrlGenerationWithDisabledPathProcessingByRoute()
  2. 9 core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php \Drupal\Tests\Core\Routing\UrlGeneratorTest::testUrlGenerationWithDisabledPathProcessingByRoute()

@covers ::generateFromRoute

File

core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php, line 261

Class

UrlGeneratorTest
Confirm that the UrlGenerator is functioning properly.

Namespace

Drupal\Tests\Core\Routing

Code

public function testUrlGenerationWithDisabledPathProcessingByRoute() {
  $path_processor = $this
    ->prophesize(OutboundPathProcessorInterface::class);
  $path_processor
    ->processOutbound(Argument::cetera())
    ->shouldNotBeCalled();
  $provider = $this
    ->prophesize(RouteProviderInterface::class);
  $provider
    ->getRouteByName('test_1')
    ->willReturn(new Route('/test/one', [], [], [
    'default_url_options' => [
      'path_processing' => FALSE,
    ],
  ]));
  $generator = new UrlGenerator($provider
    ->reveal(), $path_processor
    ->reveal(), $this->routeProcessorManager, $this->requestStack, [
    'http',
    'https',
  ]);
  $generator
    ->setContext($this->context);
  $url = $generator
    ->generateFromRoute('test_1', []);
  $this
    ->assertEquals('/test/one', $url);
}