You are here

public function PermanentMemcacheBackendTest::testDeleteAll in Permanent Cache Bin 8

Test Drupal\Core\Cache\CacheBackendInterface::deleteAll().

Overrides GenericCacheBackendUnitTestBase::testDeleteAll

File

modules/pcb_memcache/tests/src/Kernel/PermanentMemcacheBackendTest.php, line 42

Class

PermanentMemcacheBackendTest
Tests the PermanentMemcacheBackendTest.

Namespace

Drupal\Tests\pcb_memcache\Kernel

Code

public function testDeleteAll() {
  $backend_a = $this
    ->getCacheBackend();
  $backend_b = $this
    ->getCacheBackend('bootstrap');

  // Set both expiring and permanent keys.
  $backend_a
    ->set('test1', 1, Cache::PERMANENT);
  $backend_a
    ->set('test2', 3, time() + 1000);
  $backend_b
    ->set('test3', 4, Cache::PERMANENT);
  $backend_a
    ->deleteAll();

  // We don't delete on deleteAll(). Keys should be here.
  $this
    ->assertTrue($backend_a
    ->get('test1'), 'First key has been deleted.');
  $this
    ->assertTrue($backend_a
    ->get('test2'), 'Second key has been deleted.');
  $this
    ->assertTrue($backend_b
    ->get('test3'), 'Item in other bin is preserved.');
}