You are here

public function PermanentRedisBackendTest::testDeleteAll in Permanent Cache Bin 8

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

Overrides GenericCacheBackendUnitTestBase::testDeleteAll

File

modules/pcb_redis/tests/src/Kernel/PermanentRedisBackendTest.php, line 43

Class

PermanentRedisBackendTest
Tests the PermanentRedisBackendTest.

Namespace

Drupal\Tests\pcb_redis\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.');
}