You are here

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

Tests the getMetadata() method.

@covers ::getMetadata

File

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

Class

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

Namespace

Drupal\Tests\user\Unit

Code

public function testGetMetadata() {
  $this->keyValue
    ->expects($this
    ->at(0))
    ->method('get')
    ->with('test')
    ->will($this
    ->returnValue($this->ownObject));
  $this->keyValue
    ->expects($this
    ->at(1))
    ->method('get')
    ->with('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'));
}