You are here

protected function SharedTempStoreTest::setUp 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::setUp()

Overrides UnitTestCase::setUp

File

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

Class

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

Namespace

Drupal\Tests\user\Unit

Code

protected function setUp() {
  parent::setUp();
  $this->keyValue = $this
    ->getMock('Drupal\\Core\\KeyValueStore\\KeyValueStoreExpirableInterface');
  $this->lock = $this
    ->getMock('Drupal\\Core\\Lock\\LockBackendInterface');
  $this->requestStack = new RequestStack();
  $request = Request::createFromGlobals();
  $this->requestStack
    ->push($request);
  $this->tempStore = new SharedTempStore($this->keyValue, $this->lock, $this->owner, $this->requestStack, 604800);
  $this->ownObject = (object) array(
    'data' => 'test_data',
    'owner' => $this->owner,
    'updated' => (int) $request->server
      ->get('REQUEST_TIME'),
  );

  // Clone the object but change the owner.
  $this->otherObject = clone $this->ownObject;
  $this->otherObject->owner = 2;
}