function PrivateTempStoreTest::testSet

Tests a successful set() call.

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

File

core/modules/user/tests/src/Unit/PrivateTempStoreTest.php, line 156

Class

PrivateTempStoreTest
@coversDefaultClass \Drupal\user\PrivateTempStore[[api-linebreak]] @group user @group legacy @runTestsInSeparateProcesses @preserveGlobalState disabled

Namespace

Drupal\Tests\user\Unit

Code

public function testSet() {
  $this->lock
    ->expects($this->once())
    ->method('acquire')
    ->with('1:test')
    ->will($this->returnValue(TRUE));
  $this->lock
    ->expects($this->never())
    ->method('wait');
  $this->lock
    ->expects($this->once())
    ->method('release')
    ->with('1:test');
  $this->keyValue
    ->expects($this->once())
    ->method('setWithExpire')
    ->with('1:test', $this->ownObject, 604800);
  $this->tempStore
    ->set('test', 'test_data');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.