Skip to content
Snippets Groups Projects
Commit 91e01793 authored by catch's avatar catch
Browse files

Issue #3395212 by nicxvan, deborahblessy, murilohp, smustgrave, fabianx,...

Issue #3395212 by nicxvan, deborahblessy, murilohp, smustgrave, fabianx, kristiaanvandeneynde: Ensure invalid items are not written to FastBackend in ChainedFast

(cherry picked from commit e6b0b85e)
parent cfc0f427
No related branches found
No related tags found
1 merge request!11185Issue #3477324 by andypost, alexpott: Fix usage of str_getcsv() and fgetcsv() for PHP 8.4
Pipeline #377015 passed with warnings
Pipeline: drupal

#377051

    Pipeline: drupal

    #377046

      Pipeline: drupal

      #377036

        +1
        ......@@ -166,7 +166,9 @@ public function getMultiple(&$cids, $allow_invalid = FALSE) {
        if ($cids) {
        foreach ($this->consistentBackend->getMultiple($cids, $allow_invalid) as $item) {
        $cache[$item->cid] = $item;
        $this->fastBackend->set($item->cid, $item->data, $item->expire, $item->tags);
        if (!$allow_invalid || $item->valid) {
        $this->fastBackend->set($item->cid, $item->data, $item->expire, $item->tags);
        }
        }
        }
        ......
        ......@@ -5,6 +5,7 @@
        namespace Drupal\Tests\Core\Cache;
        use Drupal\Component\Datetime\Time;
        use Drupal\Core\Cache\Cache;
        use Drupal\Core\Cache\ChainedFastBackend;
        use Drupal\Core\Cache\MemoryBackend;
        use Drupal\Tests\UnitTestCase;
        ......@@ -61,6 +62,47 @@ public function testGetDoesNotHitConsistentBackend(): void {
        $this->assertEquals('baz', $chained_fast_backend->get('foo')->data);
        }
        /**
        * Tests a get() on consistent backend without saving on fast backend.
        */
        public function testSetInvalidDataFastBackend(): void {
        $cid = $this->randomString();
        $item = (object) [
        'cid' => $cid,
        'data' => serialize($this->randomObject()),
        'created' => ChainedFastBackend::LAST_WRITE_TIMESTAMP_PREFIX . 'cache_foo',
        'expire' => Cache::PERMANENT,
        'tags' => [],
        'valid' => FALSE,
        ];
        $consistent_cache = $this->createMock('Drupal\Core\Cache\CacheBackendInterface');
        $consistent_cache->expects($this->once())
        ->method('get')
        ->withAnyParameters()
        ->willReturn(FALSE);
        $consistent_cache->expects($this->once())
        ->method('getMultiple')
        ->withAnyParameters()
        ->willReturn([$item]);
        $fast_cache = new MemoryBackend(new Time());
        $chained_fast_backend = new ChainedFastBackend(
        $consistent_cache,
        $fast_cache,
        'foo'
        );
        // Perform a get using the allowing invalid data parameter.
        $this->assertEquals($item, $chained_fast_backend->get($cid, TRUE));
        // Perform a get directly on the fast cache to guarantee the invalid data
        // were not saved there.
        $this->assertEquals(NULL, $fast_cache->get($cid), 'Invalid data was not saved on the fast cache.');
        }
        /**
        * Tests a fast cache miss gets data from the consistent cache backend.
        */
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment