Skip to content
Snippets Groups Projects
Unverified Commit 86e95963 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3138749 by jackniu, dww, jungle: Fix "cache" related typos

parent 9b9e1f08
No related branches found
No related tags found
9 merge requests!1445Issue #2920039: Views' User Name exposed group filter validation,!1298Issue #3240993: Let layout builder render inline block translations,!774Issue #3174569: Example node template file name is incorrect,!497Issue #2463967: Use .user.ini file for PHP settings,!433Resolve #3163663 "Too many open files",!233Resolve #2693787 "Taxonomy term name",!133Resolve #2666286 "Clean up menuui",!112Resolve #3187004 "Drupaldatetime serialization issue",!53Resolve #3181870: Correct typo "the the" in "core/classList" deprecation message.
......@@ -61,7 +61,7 @@ protected function setUp() {
/**
* Tests access cacheability.
*/
public function testAccessCacheablity() {
public function testAccessCacheability() {
$node = $this->createNode(['type' => 'page']);
/** @var \Drupal\user\RoleInterface $authenticated */
......
......@@ -19,7 +19,7 @@
* help = @Translation("Provides a test access plugin that reports when cacheable metadata is being calculated.")
* )
*/
class CachableMetadataCalculationTest extends AccessPluginBase implements CacheableDependencyInterface {
class CacheableMetadataCalculationTest extends AccessPluginBase implements CacheableDependencyInterface {
/**
* The state service.
......@@ -29,7 +29,7 @@ class CachableMetadataCalculationTest extends AccessPluginBase implements Cachea
protected $state;
/**
* Constructs a CachableMetadataCalculationTest access plugin.
* Constructs a CacheableMetadataCalculationTest access plugin.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
......
......@@ -9,7 +9,7 @@
*
* @group views
*/
class CachableMetadataCalculationTest extends KernelTestBase {
class CacheableMetadataCalculationTest extends KernelTestBase {
/**
* The ID of the view used in the test.
......@@ -72,21 +72,21 @@ public function testCacheableMetadataCalculation() {
// metadata to be recalculated.
$this->enableModules([self::TEST_MODULE]);
$this->installConfig([self::TEST_MODULE]);
$this->assertCachebleMetadataHasBeenCalculated(FALSE);
$this->assertCacheableMetadataHasBeenCalculated(FALSE);
// When a view is saved normally we have to recalculate the cacheability
// metadata, since it is possible changes have been made to the view that
// affect cacheability.
$view = $this->entityTypeManager->getStorage('view')->load(self::TEST_VIEW_ID);
$view->save();
$this->assertCachebleMetadataHasBeenCalculated(TRUE);
$this->assertCacheableMetadataHasBeenCalculated(TRUE);
$this->resetState();
// When a view is being saved due to config being synchronized, the
// cacheability metadata doesn't change so it should not be recalculated.
$view->setSyncing(TRUE);
$view->save();
$this->assertCachebleMetadataHasBeenCalculated(FALSE);
$this->assertCacheableMetadataHasBeenCalculated(FALSE);
}
/**
......@@ -96,7 +96,7 @@ public function testCacheableMetadataCalculation() {
* TRUE if it is expected that the cacheability metadata has been
* calculated. FALSE otherwise.
*/
protected function assertCachebleMetadataHasBeenCalculated($expected_result) {
protected function assertCacheableMetadataHasBeenCalculated($expected_result) {
$this->state->resetCache();
$this->assertEquals($expected_result, $this->state->get('views_test_cacheable_metadata_has_been_accessed'));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment