public function PrivateTempStoreTest::testDeleteWithNoLockAvailable in Drupal 8
Same name in this branch
- 8 core/tests/Drupal/Tests/Core/TempStore/PrivateTempStoreTest.php \Drupal\Tests\Core\TempStore\PrivateTempStoreTest::testDeleteWithNoLockAvailable()
- 8 core/modules/user/tests/src/Unit/PrivateTempStoreTest.php \Drupal\Tests\user\Unit\PrivateTempStoreTest::testDeleteWithNoLockAvailable()
Tests the delete() method with no lock available.
@covers ::delete
File
- core/
tests/ Drupal/ Tests/ Core/ TempStore/ PrivateTempStoreTest.php, line 257
Class
- PrivateTempStoreTest
- @coversDefaultClass \Drupal\Core\TempStore\PrivateTempStore @group TempStore
Namespace
Drupal\Tests\Core\TempStoreCode
public function testDeleteWithNoLockAvailable() {
$this->keyValue
->expects($this
->once())
->method('get')
->with('1:test')
->will($this
->returnValue($this->ownObject));
$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
->delete('test');
}