You are here

public function UrlGeneratorTest::testUrlGenerationWithDisabledPathProcessing in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php \Drupal\Tests\Core\Routing\UrlGeneratorTest::testUrlGenerationWithDisabledPathProcessing()
  2. 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\Routing

Code

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);
}