You are here

protected function LayoutSectionItemListTest::getSectionStorage in Drupal 8

Sets up the section storage entity.

Parameters

array $section_data: An array of section data.

Return value

\Drupal\Core\Entity\EntityInterface The entity.

Overrides SectionStorageTestBase::getSectionStorage

File

core/modules/layout_builder/tests/src/Kernel/LayoutSectionItemListTest.php, line 30

Class

LayoutSectionItemListTest
Tests the field type for Layout Sections.

Namespace

Drupal\Tests\layout_builder\Kernel

Code

protected function getSectionStorage(array $section_data) {
  $this
    ->installEntitySchema('entity_test_base_field_display');
  LayoutBuilderEntityViewDisplay::create([
    'targetEntityType' => 'entity_test_base_field_display',
    'bundle' => 'entity_test_base_field_display',
    'mode' => 'default',
    'status' => TRUE,
  ])
    ->enableLayoutBuilder()
    ->setOverridable()
    ->save();
  array_map(function ($row) {
    return [
      'section' => $row,
    ];
  }, $section_data);
  $entity = EntityTestBaseFieldDisplay::create([
    'name' => 'The test entity',
    OverridesSectionStorage::FIELD_NAME => $section_data,
  ]);
  $entity
    ->save();
  return $entity
    ->get(OverridesSectionStorage::FIELD_NAME);
}