function AliasPathProcessorTest::testProcessOutbound
Same name in other branches
- 8.9.x core/modules/path_alias/tests/src/Unit/PathProcessor/AliasPathProcessorTest.php \Drupal\Tests\path_alias\Unit\PathProcessor\AliasPathProcessorTest::testProcessOutbound()
- 10 core/modules/path_alias/tests/src/Unit/PathProcessor/AliasPathProcessorTest.php \Drupal\Tests\path_alias\Unit\PathProcessor\AliasPathProcessorTest::testProcessOutbound()
- 11.x core/modules/path_alias/tests/src/Unit/PathProcessor/AliasPathProcessorTest.php \Drupal\Tests\path_alias\Unit\PathProcessor\AliasPathProcessorTest::testProcessOutbound()
@covers ::processOutbound
@dataProvider providerTestProcessOutbound
File
-
core/
modules/ path_alias/ tests/ src/ Unit/ PathProcessor/ AliasPathProcessorTest.php, line 64
Class
- AliasPathProcessorTest
- @coversDefaultClass \Drupal\path_alias\PathProcessor\AliasPathProcessor @group PathProcessor @group path_alias
Namespace
Drupal\Tests\path_alias\Unit\PathProcessorCode
public function testProcessOutbound($path, array $options, $expected_path) {
$this->aliasManager
->expects($this->any())
->method('getAliasByPath')
->willReturnMap([
[
'internal-url',
NULL,
'urlalias',
],
[
'url',
NULL,
'url',
],
]);
$bubbleable_metadata = new BubbleableMetadata();
$this->assertEquals($expected_path, $this->pathProcessor
->processOutbound($path, $options, NULL, $bubbleable_metadata));
// Cacheability of paths replaced with path aliases is permanent.
// @todo https://www.drupal.org/node/2480077
$this->assertEquals((new BubbleableMetadata())->setCacheMaxAge(Cache::PERMANENT), $bubbleable_metadata);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.