You are here

public function SharedTempStoreTest::testDeleteWithNoLockAvailable 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::testDeleteWithNoLockAvailable()

Tests the delete() method with no lock available.

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

File

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

Class

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

Namespace

Drupal\Tests\user\Unit

Code

public function testDeleteWithNoLockAvailable() {
  $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
    ->delete('test');
}