public function SharedTempStoreTest::testSetWithNoLockAvailable in Drupal 8
Same name in this branch
- 8 core/tests/Drupal/Tests/Core/TempStore/SharedTempStoreTest.php \Drupal\Tests\Core\TempStore\SharedTempStoreTest::testSetWithNoLockAvailable()
- 8 core/modules/user/tests/src/Unit/SharedTempStoreTest.php \Drupal\Tests\user\Unit\SharedTempStoreTest::testSetWithNoLockAvailable()
Tests the set() method with no lock available.
@covers ::set
File
- core/
tests/ Drupal/ Tests/ Core/ TempStore/ SharedTempStoreTest.php, line 139
Class
- SharedTempStoreTest
- @coversDefaultClass \Drupal\Core\TempStore\SharedTempStore @group TempStore
Namespace
Drupal\Tests\Core\TempStoreCode
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
->expectException(TempStoreException::class);
$this->tempStore
->set('test', 'value');
}