function LayoutTempstoreRepositoryTest::testGetInvalidEntry

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/tests/src/Unit/LayoutTempstoreRepositoryTest.php \Drupal\Tests\layout_builder\Unit\LayoutTempstoreRepositoryTest::testGetInvalidEntry()
  2. 8.9.x core/modules/layout_builder/tests/src/Unit/LayoutTempstoreRepositoryTest.php \Drupal\Tests\layout_builder\Unit\LayoutTempstoreRepositoryTest::testGetInvalidEntry()
  3. 11.x core/modules/layout_builder/tests/src/Unit/LayoutTempstoreRepositoryTest.php \Drupal\Tests\layout_builder\Unit\LayoutTempstoreRepositoryTest::testGetInvalidEntry()

@covers ::get

File

core/modules/layout_builder/tests/src/Unit/LayoutTempstoreRepositoryTest.php, line 69

Class

LayoutTempstoreRepositoryTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21layout_builder%21src%21LayoutTempstoreRepository.php/class/LayoutTempstoreRepository/10" title="Provides a mechanism for loading layouts from tempstore." class="local">\Drupal\layout_builder\LayoutTempstoreRepository</a> @group layout_builder

Namespace

Drupal\Tests\layout_builder\Unit

Code

public function testGetInvalidEntry() : void {
    $section_storage = $this->prophesize(SectionStorageInterface::class);
    $section_storage->getStorageType()
        ->willReturn('my_storage_type');
    $section_storage->getStorageId()
        ->willReturn('my_storage_id');
    $tempstore = $this->prophesize(SharedTempStore::class);
    $tempstore->get('my_storage_id')
        ->willReturn([
        'section_storage' => 'this_is_not_an_entity',
    ]);
    $tempstore_factory = $this->prophesize(SharedTempStoreFactory::class);
    $tempstore_factory->get('layout_builder.section_storage.my_storage_type')
        ->willReturn($tempstore->reveal());
    $repository = new LayoutTempstoreRepository($tempstore_factory->reveal());
    $this->expectException(\UnexpectedValueException::class);
    $this->expectExceptionMessage('The entry with storage type "my_storage_type" and ID "my_storage_id" is invalid');
    $repository->get($section_storage->reveal());
}

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