public function BackendChainImplementationUnitTest::testGet

Test the get feature.

File

drupal/core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php, line 98
Definition of Drupal\Tests\Core\Cache\BackendChainImplementationUnitTest.

Class

BackendChainImplementationUnitTest
Tests implementation-specific functionality of the BackendChain backend.

Namespace

Drupal\Tests\Core\Cache

Code

public function testGet() {
  $cached = $this->chain
    ->get('t123');
  $this
    ->assertNotSame(FALSE, $cached, 'Got key that is on all backends');
  $this
    ->assertSame(1231, $cached->data, 'Got the key from the backend 1');
  $cached = $this->chain
    ->get('t23');
  $this
    ->assertNotSame(FALSE, $cached, 'Got key that is on backends 2 and 3');
  $this
    ->assertSame(232, $cached->data, 'Got the key from the backend 2');
  $cached = $this->chain
    ->get('t3');
  $this
    ->assertNotSame(FALSE, $cached, 'Got key that is on the backend 3');
  $this
    ->assertSame(33, $cached->data, 'Got the key from the backend 3');
}