You are here

public function PrivateTempStoreTest::testGetMetadata in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/tests/src/Unit/PrivateTempStoreTest.php \Drupal\Tests\user\Unit\PrivateTempStoreTest::testGetMetadata()

Tests the getMetadata() method.

@covers ::getMetadata

File

core/modules/user/tests/src/Unit/PrivateTempStoreTest.php, line 178
Contains \Drupal\Tests\user\Unit\PrivateTempStoreTest.

Class

PrivateTempStoreTest
@coversDefaultClass \Drupal\user\PrivateTempStore @group user

Namespace

Drupal\Tests\user\Unit

Code

public function testGetMetadata() {
  $this->keyValue
    ->expects($this
    ->at(0))
    ->method('get')
    ->with('1:test')
    ->will($this
    ->returnValue($this->ownObject));
  $this->keyValue
    ->expects($this
    ->at(1))
    ->method('get')
    ->with('1:test')
    ->will($this
    ->returnValue(FALSE));
  $metadata = $this->tempStore
    ->getMetadata('test');
  $this
    ->assertObjectHasAttribute('owner', $metadata);

  // Data should get removed.
  $this
    ->assertObjectNotHasAttribute('data', $metadata);
  $this
    ->assertNull($this->tempStore
    ->getMetadata('test'));
}