public function AliasManagerTest::testGetAliasByPathCachedMissNoAlias in Drupal 8
Same name and namespace in other branches
- 9 core/modules/path_alias/tests/src/Unit/AliasManagerTest.php \Drupal\Tests\path_alias\Unit\AliasManagerTest::testGetAliasByPathCachedMissNoAlias()
- 10 core/modules/path_alias/tests/src/Unit/AliasManagerTest.php \Drupal\Tests\path_alias\Unit\AliasManagerTest::testGetAliasByPathCachedMissNoAlias()
Tests the getAliasByPath cache with a preloaded path without alias.
@covers ::getAliasByPath @covers ::writeCache
File
- core/
modules/ path_alias/ tests/ src/ Unit/ AliasManagerTest.php, line 357
Class
- AliasManagerTest
- @coversDefaultClass \Drupal\path_alias\AliasManager @group path_alias
Namespace
Drupal\Tests\path_alias\UnitCode
public function testGetAliasByPathCachedMissNoAlias() {
$path_part1 = $this
->randomMachineName();
$path_part2 = $this
->randomMachineName();
$path = '/' . $path_part1 . '/' . $path_part2;
$cached_path = $this
->randomMachineName();
$cached_alias = $this
->randomMachineName();
$language = $this
->setUpCurrentLanguage();
$cached_paths = [
$language
->getId() => [
$cached_path,
$path,
],
];
$this->cache
->expects($this
->once())
->method('get')
->with($this->cacheKey)
->will($this
->returnValue((object) [
'data' => $cached_paths,
]));
// Simulate a request so that the preloaded paths are fetched.
$this->aliasManager
->setCacheKey($this->path);
$this->aliasWhitelist
->expects($this
->any())
->method('get')
->with($path_part1)
->will($this
->returnValue(TRUE));
$this->aliasRepository
->expects($this
->once())
->method('preloadPathAlias')
->with($cached_paths[$language
->getId()], $language
->getId())
->will($this
->returnValue([
$cached_path => $cached_alias,
]));
// LookupPathAlias() should not be called.
$this->aliasRepository
->expects($this
->never())
->method('lookupBySystemPath');
$this
->assertEquals($path, $this->aliasManager
->getAliasByPath($path));
// Call it twice to test the static cache.
$this
->assertEquals($path, $this->aliasManager
->getAliasByPath($path));
// This must not write to the cache again.
$this->cache
->expects($this
->never())
->method('set');
$this->aliasManager
->writeCache();
}