You are here

public function PrivateTempStoreTest::testSetWithNoLockAvailable in Drupal 8

Same name in this branch
  1. 8 core/tests/Drupal/Tests/Core/TempStore/PrivateTempStoreTest.php \Drupal\Tests\Core\TempStore\PrivateTempStoreTest::testSetWithNoLockAvailable()
  2. 8 core/modules/user/tests/src/Unit/PrivateTempStoreTest.php \Drupal\Tests\user\Unit\PrivateTempStoreTest::testSetWithNoLockAvailable()

Tests the set() method with no lock available.

@covers ::set

File

core/tests/Drupal/Tests/Core/TempStore/PrivateTempStoreTest.php, line 126

Class

PrivateTempStoreTest
@coversDefaultClass \Drupal\Core\TempStore\PrivateTempStore @group TempStore

Namespace

Drupal\Tests\Core\TempStore

Code

public function testSetWithNoLockAvailable() {
  $this->lock
    ->expects($this
    ->at(0))
    ->method('acquire')
    ->with('1:test')
    ->will($this
    ->returnValue(FALSE));
  $this->lock
    ->expects($this
    ->at(1))
    ->method('wait')
    ->with('1:test');
  $this->lock
    ->expects($this
    ->at(2))
    ->method('acquire')
    ->with('1:test')
    ->will($this
    ->returnValue(FALSE));
  $this->keyValue
    ->expects($this
    ->once())
    ->method('getCollectionName');
  $this
    ->expectException(TempStoreException::class);
  $this->tempStore
    ->set('test', 'value');
}