You are here

public function SharedTempStoreTest::testSetWithNoLockAvailable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/tests/src/Unit/SharedTempStoreTest.php \Drupal\Tests\user\Unit\SharedTempStoreTest::testSetWithNoLockAvailable()

Tests the set() method with no lock available.

@covers ::set @expectedException \Drupal\user\TempStoreException

File

core/modules/user/tests/src/Unit/SharedTempStoreTest.php, line 142
Contains \Drupal\Tests\user\Unit\SharedTempStoreTest.

Class

SharedTempStoreTest
@coversDefaultClass \Drupal\user\SharedTempStore @group user

Namespace

Drupal\Tests\user\Unit

Code

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