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

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

parent 57af0a04
No related branches found
No related tags found
8 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!1012Issue #3226887: Hreflang on non-canonical content pages,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10,!596Issue #3046532: deleting an entity reference field, used in a contextual view, makes the whole site unrecoverable,!496Issue #2463967: Use .user.ini file for PHP settings,!144Issue #2666286: Clean up menu_ui to conform to Drupal coding standards,!16Draft: Resolve #2081585 "History storage",!13Resolve #2903456
......@@ -228,15 +228,12 @@ buttonset
buytaert
bytouched
bzzzzzzzt
cachable
cacheability
cacheable
cacheablemetadata
cacheablity
cachebackend
cachebackends
cachebin
cacheble
cacher
cachetag
cachetags
......
......@@ -61,7 +61,7 @@ protected function setUp(): void {
/**
* 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