You are here

public function SharedTempStoreTest::testDeleteIfOwner in Drupal 8

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

Tests the deleteIfOwner() method.

@covers ::deleteIfOwner @expectedDeprecation \Drupal\user\SharedTempStore is scheduled for removal in Drupal 9.0.0. Use \Drupal\Core\TempStore\SharedTempStore instead. See https://www.drupal.org/node/2935639.

File

core/modules/user/tests/src/Unit/SharedTempStoreTest.php, line 341

Class

SharedTempStoreTest
@coversDefaultClass \Drupal\user\SharedTempStore @group user @group legacy @runTestsInSeparateProcesses @preserveGlobalState disabled

Namespace

Drupal\Tests\user\Unit

Code

public function testDeleteIfOwner() {
  $this->lock
    ->expects($this
    ->once())
    ->method('acquire')
    ->with('test_2')
    ->will($this
    ->returnValue(TRUE));
  $this->keyValue
    ->expects($this
    ->at(0))
    ->method('get')
    ->with('test_1')
    ->will($this
    ->returnValue(FALSE));
  $this->keyValue
    ->expects($this
    ->at(1))
    ->method('get')
    ->with('test_2')
    ->will($this
    ->returnValue($this->ownObject));
  $this->keyValue
    ->expects($this
    ->at(2))
    ->method('delete')
    ->with('test_2');
  $this->keyValue
    ->expects($this
    ->at(3))
    ->method('get')
    ->with('test_3')
    ->will($this
    ->returnValue($this->otherObject));
  $this
    ->assertTrue($this->tempStore
    ->deleteIfOwner('test_1'));
  $this
    ->assertTrue($this->tempStore
    ->deleteIfOwner('test_2'));
  $this
    ->assertFalse($this->tempStore
    ->deleteIfOwner('test_3'));
}