Skip to content
Snippets Groups Projects
Commit 671433d1 authored by catch's avatar catch
Browse files

Issue #3035174 by tim.plunkett, andypost, ankithashetty, jwwj, mrinalini9,...

Issue #3035174 by tim.plunkett, andypost, ankithashetty, jwwj, mrinalini9, mmbk, martin107, tatarbj, longwave, sandboxpl: Rename SectionStorageTrait to SectionListTrait
parent 2e7bd804
No related branches found
No related tags found
18 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!1896Issue #2940605: Can only intentionally re-render an entity with references 20 times,!1101Issue #2412669 by claudiu.cristea, Julfabre, sidharrell, catch, daffie,...,!1039Issue #2556069 by claudiu.cristea, bnjmnm, lauriii, pfrenssen, Tim Bozeman,...,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!1012Issue #3226887: Hreflang on non-canonical content pages,!872Draft: Issue #3221319: Race condition when creating menu links and editing content deletes menu links,!594Put each entity type table into a details element on admin/config/regional/content-language,!592Issue #2957953: Editing menus user-experience has regressed,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493,!512Issue #3207771: Menu UI node type form documentation points to non-existent function,!485Sets the autocomplete attribute for username/password input field on login form.,!449Issue #2784233: Allow multiple vocabularies in the taxonomy filter,!231Issue #2671162: summary text wysiwyg patch working fine on 9.2.0-dev,!43Resolve #3173180: Add UI for 'loading' html attribute to images,!30Issue #3182188: Updates composer usage to point at ./vendor/bin/composer
Showing
with 446 additions and 372 deletions
...@@ -21,15 +21,15 @@ ...@@ -21,15 +21,15 @@
use Drupal\layout_builder\QuickEditIntegration; use Drupal\layout_builder\QuickEditIntegration;
use Drupal\layout_builder\Section; use Drupal\layout_builder\Section;
use Drupal\layout_builder\SectionComponent; use Drupal\layout_builder\SectionComponent;
use Drupal\layout_builder\SectionStorage\SectionStorageTrait; use Drupal\layout_builder\SectionListTrait;
/** /**
* Provides an entity view display entity that has a layout. * Provides an entity view display entity that has a layout.
*/ */
class LayoutBuilderEntityViewDisplay extends BaseEntityViewDisplay implements LayoutEntityDisplayInterface { class LayoutBuilderEntityViewDisplay extends BaseEntityViewDisplay implements LayoutEntityDisplayInterface {
use SectionStorageTrait;
use LayoutEntityHelperTrait; use LayoutEntityHelperTrait;
use SectionListTrait;
/** /**
* The entity field manager. * The entity field manager.
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
use Drupal\Core\Session\AccountInterface; use Drupal\Core\Session\AccountInterface;
use Drupal\layout_builder\Section; use Drupal\layout_builder\Section;
use Drupal\layout_builder\SectionListInterface; use Drupal\layout_builder\SectionListInterface;
use Drupal\layout_builder\SectionStorage\SectionStorageTrait; use Drupal\layout_builder\SectionListTrait;
/** /**
* Defines an item list class for layout section fields. * Defines an item list class for layout section fields.
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
*/ */
class LayoutSectionItemList extends FieldItemList implements SectionListInterface { class LayoutSectionItemList extends FieldItemList implements SectionListInterface {
use SectionStorageTrait; use SectionListTrait;
/** /**
* Numerically indexed array of field items. * Numerically indexed array of field items.
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
* Provides a layout plugin that produces no output. * Provides a layout plugin that produces no output.
* *
* @see \Drupal\layout_builder\Field\LayoutSectionItemList::removeSection() * @see \Drupal\layout_builder\Field\LayoutSectionItemList::removeSection()
* @see \Drupal\layout_builder\SectionStorage\SectionStorageTrait::addBlankSection() * @see \Drupal\layout_builder\SectionListTrait::addBlankSection()
* @see \Drupal\layout_builder\SectionStorage\SectionStorageTrait::hasBlankSection() * @see \Drupal\layout_builder\SectionListTrait::hasBlankSection()
* *
* @internal * @internal
* This layout plugin is intended for internal use by Layout Builder only. * This layout plugin is intended for internal use by Layout Builder only.
......
<?php
namespace Drupal\layout_builder;
/**
* Provides a trait for maintaining a list of sections.
*
* @see \Drupal\layout_builder\SectionListInterface
*/
trait SectionListTrait {
/**
* Stores the information for all sections.
*
* Implementations of this method are expected to call array_values() to rekey
* the list of sections.
*
* @param \Drupal\layout_builder\Section[] $sections
* An array of section objects.
*
* @return $this
*/
abstract protected function setSections(array $sections);
/**
* {@inheritdoc}
*/
public function count() {
if ($this->hasBlankSection()) {
return 0;
}
return count($this->getSections());
}
/**
* {@inheritdoc}
*/
public function getSection($delta) {
if (!$this->hasSection($delta)) {
throw new \OutOfBoundsException(sprintf('Invalid delta "%s"', $delta));
}
return $this->getSections()[$delta];
}
/**
* Sets the section for the given delta on the display.
*
* @param int $delta
* The delta of the section.
* @param \Drupal\layout_builder\Section $section
* The layout section.
*
* @return $this
*/
protected function setSection($delta, Section $section) {
$sections = $this->getSections();
$sections[$delta] = $section;
$this->setSections($sections);
return $this;
}
/**
* {@inheritdoc}
*/
public function appendSection(Section $section) {
$delta = $this->count();
$this->setSection($delta, $section);
return $this;
}
/**
* {@inheritdoc}
*/
public function insertSection($delta, Section $section) {
// Clear the section list if there is currently a blank section.
if ($this->hasBlankSection()) {
$this->removeAllSections();
}
if ($this->hasSection($delta)) {
// @todo Use https://www.drupal.org/node/66183 once resolved.
$start = array_slice($this->getSections(), 0, $delta);
$end = array_slice($this->getSections(), $delta);
$this->setSections(array_merge($start, [$section], $end));
}
else {
$this->appendSection($section);
}
return $this;
}
/**
* Adds a blank section to the list.
*
* @return $this
*
* @see \Drupal\layout_builder\Plugin\Layout\BlankLayout
*/
protected function addBlankSection() {
if ($this->hasSection(0)) {
throw new \Exception('A blank section must only be added to an empty list');
}
$this->appendSection(new Section('layout_builder_blank'));
return $this;
}
/**
* Indicates if this section list contains a blank section.
*
* A blank section is used to differentiate the difference between a layout
* that has never been instantiated and one that has purposefully had all
* sections removed.
*
* @return bool
* TRUE if the section list contains a blank section, FALSE otherwise.
*
* @see \Drupal\layout_builder\Plugin\Layout\BlankLayout
*/
protected function hasBlankSection() {
// A blank section will only ever exist when the delta is 0, as added by
// ::removeSection().
return $this->hasSection(0) && $this->getSection(0)->getLayoutId() === 'layout_builder_blank';
}
/**
* {@inheritdoc}
*/
public function removeSection($delta) {
// Clear the section list if there is currently a blank section.
if ($this->hasBlankSection()) {
$this->removeAllSections();
}
$sections = $this->getSections();
unset($sections[$delta]);
$this->setSections($sections);
// Add a blank section when the last section is removed.
if (empty($sections)) {
$this->addBlankSection();
}
return $this;
}
/**
* {@inheritdoc}
*/
public function removeAllSections($set_blank = FALSE) {
$this->setSections([]);
if ($set_blank) {
$this->addBlankSection();
}
return $this;
}
/**
* Indicates if there is a section at the specified delta.
*
* @param int $delta
* The delta of the section.
*
* @return bool
* TRUE if there is a section for this delta, FALSE otherwise.
*/
protected function hasSection($delta) {
return isset($this->getSections()[$delta]);
}
/**
* Magic method: Implements a deep clone.
*/
public function __clone() {
$sections = $this->getSections();
foreach ($sections as $delta => $item) {
$sections[$delta] = clone $item;
}
$this->setSections($sections);
}
}
...@@ -2,184 +2,20 @@ ...@@ -2,184 +2,20 @@
namespace Drupal\layout_builder\SectionStorage; namespace Drupal\layout_builder\SectionStorage;
use Drupal\layout_builder\Section; @trigger_error(__NAMESPACE__ . '\SectionStorageTrait is deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. Use \Drupal\layout_builder\SectionListTrait instead. See https://www.drupal.org/node/3091432', E_USER_DEPRECATED);
use Drupal\layout_builder\SectionListTrait;
/** /**
* Provides a trait for storing sections on an object. * Provides a trait for storing sections on an object.
*
* @deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. Use
* \Drupal\layout_builder\SectionListTrait instead.
*
* @see https://www.drupal.org/node/3091432
*/ */
trait SectionStorageTrait { trait SectionStorageTrait {
/** use SectionListTrait;
* Stores the information for all sections.
*
* Implementations of this method are expected to call array_values() to rekey
* the list of sections.
*
* @param \Drupal\layout_builder\Section[] $sections
* An array of section objects.
*
* @return $this
*/
abstract protected function setSections(array $sections);
/**
* {@inheritdoc}
*/
public function count() {
if ($this->hasBlankSection()) {
return 0;
}
return count($this->getSections());
}
/**
* {@inheritdoc}
*/
public function getSection($delta) {
if (!$this->hasSection($delta)) {
throw new \OutOfBoundsException(sprintf('Invalid delta "%s"', $delta));
}
return $this->getSections()[$delta];
}
/**
* Sets the section for the given delta on the display.
*
* @param int $delta
* The delta of the section.
* @param \Drupal\layout_builder\Section $section
* The layout section.
*
* @return $this
*/
protected function setSection($delta, Section $section) {
$sections = $this->getSections();
$sections[$delta] = $section;
$this->setSections($sections);
return $this;
}
/**
* {@inheritdoc}
*/
public function appendSection(Section $section) {
$delta = $this->count();
$this->setSection($delta, $section);
return $this;
}
/**
* {@inheritdoc}
*/
public function insertSection($delta, Section $section) {
// Clear the section list if there is currently a blank section.
if ($this->hasBlankSection()) {
$this->removeAllSections();
}
if ($this->hasSection($delta)) {
// @todo Use https://www.drupal.org/node/66183 once resolved.
$start = array_slice($this->getSections(), 0, $delta);
$end = array_slice($this->getSections(), $delta);
$this->setSections(array_merge($start, [$section], $end));
}
else {
$this->appendSection($section);
}
return $this;
}
/**
* Adds a blank section to the list.
*
* @return $this
*
* @see \Drupal\layout_builder\Plugin\Layout\BlankLayout
*/
protected function addBlankSection() {
if ($this->hasSection(0)) {
throw new \Exception('A blank section must only be added to an empty list');
}
$this->appendSection(new Section('layout_builder_blank'));
return $this;
}
/**
* Indicates if this section list contains a blank section.
*
* A blank section is used to differentiate the difference between a layout
* that has never been instantiated and one that has purposefully had all
* sections removed.
*
* @return bool
* TRUE if the section list contains a blank section, FALSE otherwise.
*
* @see \Drupal\layout_builder\Plugin\Layout\BlankLayout
*/
protected function hasBlankSection() {
// A blank section will only ever exist when the delta is 0, as added by
// ::removeSection().
return $this->hasSection(0) && $this->getSection(0)->getLayoutId() === 'layout_builder_blank';
}
/**
* {@inheritdoc}
*/
public function removeSection($delta) {
// Clear the section list if there is currently a blank section.
if ($this->hasBlankSection()) {
$this->removeAllSections();
}
$sections = $this->getSections();
unset($sections[$delta]);
$this->setSections($sections);
// Add a blank section when the last section is removed.
if (empty($sections)) {
$this->addBlankSection();
}
return $this;
}
/**
* {@inheritdoc}
*/
public function removeAllSections($set_blank = FALSE) {
$this->setSections([]);
if ($set_blank) {
$this->addBlankSection();
}
return $this;
}
/**
* Indicates if there is a section at the specified delta.
*
* @param int $delta
* The delta of the section.
*
* @return bool
* TRUE if there is a section for this delta, FALSE otherwise.
*/
protected function hasSection($delta) {
return isset($this->getSections()[$delta]);
}
/**
* Magic method: Implements a deep clone.
*/
public function __clone() {
$sections = $this->getSections();
foreach ($sections as $delta => $item) {
$sections[$delta] = clone $item;
}
$this->setSections($sections);
}
} }
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
use Drupal\layout_builder\Plugin\SectionStorage\SectionStorageLocalTaskProviderInterface; use Drupal\layout_builder\Plugin\SectionStorage\SectionStorageLocalTaskProviderInterface;
use Drupal\layout_builder\Routing\LayoutBuilderRoutesTrait; use Drupal\layout_builder\Routing\LayoutBuilderRoutesTrait;
use Drupal\layout_builder\Section; use Drupal\layout_builder\Section;
use Drupal\layout_builder\SectionStorage\SectionStorageTrait; use Drupal\layout_builder\SectionListTrait;
use Drupal\layout_builder\SectionStorageInterface; use Drupal\layout_builder\SectionStorageInterface;
use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\RouteCollection;
...@@ -34,7 +34,7 @@ class SimpleConfigSectionStorage extends PluginBase implements SectionStorageInt ...@@ -34,7 +34,7 @@ class SimpleConfigSectionStorage extends PluginBase implements SectionStorageInt
use ContextAwarePluginTrait; use ContextAwarePluginTrait;
use LayoutBuilderRoutesTrait; use LayoutBuilderRoutesTrait;
use SectionStorageTrait; use SectionListTrait;
/** /**
* The config factory. * The config factory.
......
...@@ -10,12 +10,12 @@ ...@@ -10,12 +10,12 @@
* *
* @group layout_builder * @group layout_builder
*/ */
class LayoutBuilderEntityViewDisplayTest extends SectionStorageTestBase { class LayoutBuilderEntityViewDisplayTest extends SectionListTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function getSectionStorage(array $section_data) { protected function getSectionList(array $section_data) {
$display = LayoutBuilderEntityViewDisplay::create([ $display = LayoutBuilderEntityViewDisplay::create([
'targetEntityType' => 'entity_test', 'targetEntityType' => 'entity_test',
'bundle' => 'entity_test', 'bundle' => 'entity_test',
...@@ -37,8 +37,8 @@ protected function getSectionStorage(array $section_data) { ...@@ -37,8 +37,8 @@ protected function getSectionStorage(array $section_data) {
*/ */
public function testInvalidConfiguration() { public function testInvalidConfiguration() {
$this->expectException(SchemaIncompleteException::class); $this->expectException(SchemaIncompleteException::class);
$this->sectionStorage->getSection(0)->getComponent('first-uuid')->setConfiguration(['id' => 'foo', 'bar' => 'baz']); $this->sectionList->getSection(0)->getComponent('first-uuid')->setConfiguration(['id' => 'foo', 'bar' => 'baz']);
$this->sectionStorage->save(); $this->sectionList->save();
} }
/** /**
...@@ -79,15 +79,15 @@ public function providerTestIsLayoutBuilderEnabled() { ...@@ -79,15 +79,15 @@ public function providerTestIsLayoutBuilderEnabled() {
*/ */
public function testSetOverridable() { public function testSetOverridable() {
// Disable Layout Builder. // Disable Layout Builder.
$this->sectionStorage->disableLayoutBuilder(); $this->sectionList->disableLayoutBuilder();
// Set Overridable to TRUE and ensure Layout Builder is enabled. // Set Overridable to TRUE and ensure Layout Builder is enabled.
$this->sectionStorage->setOverridable(); $this->sectionList->setOverridable();
$this->assertTrue($this->sectionStorage->isLayoutBuilderEnabled()); $this->assertTrue($this->sectionList->isLayoutBuilderEnabled());
// Ensure Layout Builder is still enabled after setting Overridable to FALSE. // Ensure Layout Builder is still enabled after setting Overridable to FALSE.
$this->sectionStorage->setOverridable(FALSE); $this->sectionList->setOverridable(FALSE);
$this->assertTrue($this->sectionStorage->isLayoutBuilderEnabled()); $this->assertTrue($this->sectionList->isLayoutBuilderEnabled());
} }
} }
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* *
* @group layout_builder * @group layout_builder
*/ */
class LayoutSectionItemListTest extends SectionStorageTestBase { class LayoutSectionItemListTest extends SectionListTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
...@@ -27,7 +27,7 @@ class LayoutSectionItemListTest extends SectionStorageTestBase { ...@@ -27,7 +27,7 @@ class LayoutSectionItemListTest extends SectionStorageTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function getSectionStorage(array $section_data) { protected function getSectionList(array $section_data) {
$this->installEntitySchema('entity_test_base_field_display'); $this->installEntitySchema('entity_test_base_field_display');
LayoutBuilderEntityViewDisplay::create([ LayoutBuilderEntityViewDisplay::create([
'targetEntityType' => 'entity_test_base_field_display', 'targetEntityType' => 'entity_test_base_field_display',
...@@ -54,13 +54,13 @@ protected function getSectionStorage(array $section_data) { ...@@ -54,13 +54,13 @@ protected function getSectionStorage(array $section_data) {
* @covers ::equals * @covers ::equals
*/ */
public function testEquals() { public function testEquals() {
$this->sectionStorage->getSection(0)->setLayoutSettings(['foo' => 1]); $this->sectionList->getSection(0)->setLayoutSettings(['foo' => 1]);
$second_section_storage = clone $this->sectionStorage; $second_section_storage = clone $this->sectionList;
$this->assertTrue($this->sectionStorage->equals($second_section_storage)); $this->assertTrue($this->sectionList->equals($second_section_storage));
$second_section_storage->getSection(0)->setLayoutSettings(['foo' => '1']); $second_section_storage->getSection(0)->setLayoutSettings(['foo' => '1']);
$this->assertFalse($this->sectionStorage->equals($second_section_storage)); $this->assertFalse($this->sectionList->equals($second_section_storage));
} }
/** /**
...@@ -68,7 +68,7 @@ public function testEquals() { ...@@ -68,7 +68,7 @@ public function testEquals() {
*/ */
public function testEqualsNonSection() { public function testEqualsNonSection() {
$list = $this->prophesize(FieldItemListInterface::class); $list = $this->prophesize(FieldItemListInterface::class);
$this->assertFalse($this->sectionStorage->equals($list->reveal())); $this->assertFalse($this->sectionList->equals($list->reveal()));
} }
} }
<?php
namespace Drupal\Tests\layout_builder\Kernel;
use Drupal\KernelTests\Core\Entity\EntityKernelTestBase;
use Drupal\layout_builder\Section;
use Drupal\layout_builder\SectionComponent;
/**
* Provides a base class for testing implementations of a section list.
*/
abstract class SectionListTestBase extends EntityKernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'layout_builder',
'layout_discovery',
'layout_test',
];
/**
* The section list implementation.
*
* @var \Drupal\layout_builder\SectionListInterface
*/
protected $sectionList;
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$section_data = [
new Section('layout_test_plugin', [], [
'first-uuid' => new SectionComponent('first-uuid', 'content', ['id' => 'foo']),
]),
new Section('layout_test_plugin', ['setting_1' => 'bar'], [
'second-uuid' => new SectionComponent('second-uuid', 'content', ['id' => 'foo']),
]),
];
$this->sectionList = $this->getSectionList($section_data);
}
/**
* Sets up the section list.
*
* @param array $section_data
* An array of section data.
*
* @return \Drupal\layout_builder\SectionListInterface
* The section list.
*/
abstract protected function getSectionList(array $section_data);
/**
* Tests ::getSections().
*/
public function testGetSections() {
$expected = [
new Section('layout_test_plugin', ['setting_1' => 'Default'], [
'first-uuid' => new SectionComponent('first-uuid', 'content', ['id' => 'foo']),
]),
new Section('layout_test_plugin', ['setting_1' => 'bar'], [
'second-uuid' => new SectionComponent('second-uuid', 'content', ['id' => 'foo']),
]),
];
$this->assertSections($expected);
}
/**
* @covers ::getSection
*/
public function testGetSection() {
$this->assertInstanceOf(Section::class, $this->sectionList->getSection(0));
}
/**
* @covers ::getSection
*/
public function testGetSectionInvalidDelta() {
$this->expectException(\OutOfBoundsException::class);
$this->expectExceptionMessage('Invalid delta "2"');
$this->sectionList->getSection(2);
}
/**
* @covers ::insertSection
*/
public function testInsertSection() {
$expected = [
new Section('layout_test_plugin', ['setting_1' => 'Default'], [
'first-uuid' => new SectionComponent('first-uuid', 'content', ['id' => 'foo']),
]),
new Section('layout_onecol'),
new Section('layout_test_plugin', ['setting_1' => 'bar'], [
'second-uuid' => new SectionComponent('second-uuid', 'content', ['id' => 'foo']),
]),
];
$this->sectionList->insertSection(1, new Section('layout_onecol'));
$this->assertSections($expected);
}
/**
* @covers ::appendSection
*/
public function testAppendSection() {
$expected = [
new Section('layout_test_plugin', ['setting_1' => 'Default'], [
'first-uuid' => new SectionComponent('first-uuid', 'content', ['id' => 'foo']),
]),
new Section('layout_test_plugin', ['setting_1' => 'bar'], [
'second-uuid' => new SectionComponent('second-uuid', 'content', ['id' => 'foo']),
]),
new Section('layout_onecol'),
];
$this->sectionList->appendSection(new Section('layout_onecol'));
$this->assertSections($expected);
}
/**
* @covers ::removeAllSections
*
* @dataProvider providerTestRemoveAllSections
*/
public function testRemoveAllSections($set_blank, $expected) {
if ($set_blank === NULL) {
$this->sectionList->removeAllSections();
}
else {
$this->sectionList->removeAllSections($set_blank);
}
$this->assertSections($expected);
}
/**
* Provides test data for ::testRemoveAllSections().
*/
public function providerTestRemoveAllSections() {
$data = [];
$data[] = [NULL, []];
$data[] = [FALSE, []];
$data[] = [TRUE, [new Section('layout_builder_blank')]];
return $data;
}
/**
* @covers ::removeSection
*/
public function testRemoveSection() {
$expected = [
new Section('layout_test_plugin', ['setting_1' => 'bar'], [
'second-uuid' => new SectionComponent('second-uuid', 'content', ['id' => 'foo']),
]),
];
$this->sectionList->removeSection(0);
$this->assertSections($expected);
}
/**
* @covers ::removeSection
*/
public function testRemoveMultipleSections() {
$expected = [
new Section('layout_builder_blank'),
];
$this->sectionList->removeSection(0);
$this->sectionList->removeSection(0);
$this->assertSections($expected);
}
/**
* Tests __clone().
*/
public function testClone() {
$this->assertSame(['setting_1' => 'Default'], $this->sectionList->getSection(0)->getLayoutSettings());
$new_section_storage = clone $this->sectionList;
$new_section_storage->getSection(0)->setLayoutSettings(['asdf' => 'qwer']);
$this->assertSame(['setting_1' => 'Default'], $this->sectionList->getSection(0)->getLayoutSettings());
}
/**
* Asserts that the field list has the expected sections.
*
* @param \Drupal\layout_builder\Section[] $expected
* The expected sections.
*/
protected function assertSections(array $expected) {
$result = $this->sectionList->getSections();
$this->assertEquals($expected, $result);
$this->assertSame(array_keys($expected), array_keys($result));
}
}
...@@ -4,19 +4,19 @@ ...@@ -4,19 +4,19 @@
use Drupal\layout_builder\Section; use Drupal\layout_builder\Section;
use Drupal\layout_builder\SectionListInterface; use Drupal\layout_builder\SectionListInterface;
use Drupal\layout_builder\SectionStorage\SectionStorageTrait; use Drupal\layout_builder\SectionListTrait;
/** /**
* @coversDefaultClass \Drupal\layout_builder\SectionStorage\SectionStorageTrait * @coversDefaultClass \Drupal\layout_builder\SectionListTrait
* *
* @group layout_builder * @group layout_builder
*/ */
class SectionListTraitTest extends SectionStorageTestBase { class SectionListTraitTest extends SectionListTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function getSectionStorage(array $section_data) { protected function getSectionList(array $section_data) {
return new TestSectionList($section_data); return new TestSectionList($section_data);
} }
...@@ -26,14 +26,14 @@ protected function getSectionStorage(array $section_data) { ...@@ -26,14 +26,14 @@ protected function getSectionStorage(array $section_data) {
public function testAddBlankSection() { public function testAddBlankSection() {
$this->expectException(\Exception::class); $this->expectException(\Exception::class);
$this->expectExceptionMessage('A blank section must only be added to an empty list'); $this->expectExceptionMessage('A blank section must only be added to an empty list');
$this->sectionStorage->addBlankSection(); $this->sectionList->addBlankSection();
} }
} }
class TestSectionList implements SectionListInterface { class TestSectionList implements SectionListInterface {
use SectionStorageTrait { use SectionListTrait {
addBlankSection as public; addBlankSection as public;
} }
......
...@@ -2,200 +2,52 @@ ...@@ -2,200 +2,52 @@
namespace Drupal\Tests\layout_builder\Kernel; namespace Drupal\Tests\layout_builder\Kernel;
use Drupal\KernelTests\Core\Entity\EntityKernelTestBase; @trigger_error(__NAMESPACE__ . '\SectionStorageTestBase is deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. Use \Drupal\Tests\layout_builder\Kernel\SectionListTestBase instead. See https://www.drupal.org/node/3091432', E_USER_DEPRECATED);
use Drupal\layout_builder\Section;
use Drupal\layout_builder\SectionComponent;
/** /**
* Provides a base class for testing implementations of section storage. * Provides a base class for testing implementations of section storage.
*
* @deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. Use
* \Drupal\Tests\layout_builder\Kernel\SectionListTestBase instead.
*
* @see https://www.drupal.org/node/3091432
*/ */
abstract class SectionStorageTestBase extends EntityKernelTestBase { abstract class SectionStorageTestBase extends SectionListTestBase {
/** /**
* {@inheritdoc} * The section list implementation.
*/
protected static $modules = [
'layout_builder',
'layout_discovery',
'layout_test',
];
/**
* The section storage implementation.
* *
* @var \Drupal\layout_builder\SectionStorageInterface * @var \Drupal\layout_builder\SectionListInterface
*/ */
protected $sectionStorage; protected $sectionStorage;
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
$section_data = [ // Provide backwards compatibility.
new Section('layout_test_plugin', [], [ $this->sectionStorage = $this->sectionList;
'first-uuid' => new SectionComponent('first-uuid', 'content', ['id' => 'foo']),
]),
new Section('layout_test_plugin', ['setting_1' => 'bar'], [
'second-uuid' => new SectionComponent('second-uuid', 'content', ['id' => 'foo']),
]),
];
$this->sectionStorage = $this->getSectionStorage($section_data);
} }
/** /**
* Sets up the section storage entity. * Sets up the section list.
* *
* @param array $section_data * @param array $section_data
* An array of section data. * An array of section data.
* *
* @return \Drupal\Core\Entity\EntityInterface * @return \Drupal\layout_builder\SectionListInterface
* The entity. * The section list.
*/ */
abstract protected function getSectionStorage(array $section_data); abstract protected function getSectionStorage(array $section_data);
/** /**
* Tests ::getSections(). * {@inheritdoc}
*/
public function testGetSections() {
$expected = [
new Section('layout_test_plugin', ['setting_1' => 'Default'], [
'first-uuid' => new SectionComponent('first-uuid', 'content', ['id' => 'foo']),
]),
new Section('layout_test_plugin', ['setting_1' => 'bar'], [
'second-uuid' => new SectionComponent('second-uuid', 'content', ['id' => 'foo']),
]),
];
$this->assertSections($expected);
}
/**
* @covers ::getSection
*/
public function testGetSection() {
$this->assertInstanceOf(Section::class, $this->sectionStorage->getSection(0));
}
/**
* @covers ::getSection
*/
public function testGetSectionInvalidDelta() {
$this->expectException(\OutOfBoundsException::class);
$this->expectExceptionMessage('Invalid delta "2"');
$this->sectionStorage->getSection(2);
}
/**
* @covers ::insertSection
*/
public function testInsertSection() {
$expected = [
new Section('layout_test_plugin', ['setting_1' => 'Default'], [
'first-uuid' => new SectionComponent('first-uuid', 'content', ['id' => 'foo']),
]),
new Section('layout_onecol'),
new Section('layout_test_plugin', ['setting_1' => 'bar'], [
'second-uuid' => new SectionComponent('second-uuid', 'content', ['id' => 'foo']),
]),
];
$this->sectionStorage->insertSection(1, new Section('layout_onecol'));
$this->assertSections($expected);
}
/**
* @covers ::appendSection
*/
public function testAppendSection() {
$expected = [
new Section('layout_test_plugin', ['setting_1' => 'Default'], [
'first-uuid' => new SectionComponent('first-uuid', 'content', ['id' => 'foo']),
]),
new Section('layout_test_plugin', ['setting_1' => 'bar'], [
'second-uuid' => new SectionComponent('second-uuid', 'content', ['id' => 'foo']),
]),
new Section('layout_onecol'),
];
$this->sectionStorage->appendSection(new Section('layout_onecol'));
$this->assertSections($expected);
}
/**
* @covers ::removeAllSections
*
* @dataProvider providerTestRemoveAllSections
*/
public function testRemoveAllSections($set_blank, $expected) {
if ($set_blank === NULL) {
$this->sectionStorage->removeAllSections();
}
else {
$this->sectionStorage->removeAllSections($set_blank);
}
$this->assertSections($expected);
}
/**
* Provides test data for ::testRemoveAllSections().
*/
public function providerTestRemoveAllSections() {
$data = [];
$data[] = [NULL, []];
$data[] = [FALSE, []];
$data[] = [TRUE, [new Section('layout_builder_blank')]];
return $data;
}
/**
* @covers ::removeSection
*/
public function testRemoveSection() {
$expected = [
new Section('layout_test_plugin', ['setting_1' => 'bar'], [
'second-uuid' => new SectionComponent('second-uuid', 'content', ['id' => 'foo']),
]),
];
$this->sectionStorage->removeSection(0);
$this->assertSections($expected);
}
/**
* @covers ::removeSection
*/
public function testRemoveMultipleSections() {
$expected = [
new Section('layout_builder_blank'),
];
$this->sectionStorage->removeSection(0);
$this->sectionStorage->removeSection(0);
$this->assertSections($expected);
}
/**
* Tests __clone().
*/
public function testClone() {
$this->assertSame(['setting_1' => 'Default'], $this->sectionStorage->getSection(0)->getLayoutSettings());
$new_section_storage = clone $this->sectionStorage;
$new_section_storage->getSection(0)->setLayoutSettings(['asdf' => 'qwer']);
$this->assertSame(['setting_1' => 'Default'], $this->sectionStorage->getSection(0)->getLayoutSettings());
}
/**
* Asserts that the field list has the expected sections.
*
* @param \Drupal\layout_builder\Section[] $expected
* The expected sections.
*/ */
protected function assertSections(array $expected) { protected function getSectionList(array $section_data) {
$result = $this->sectionStorage->getSections(); // Provide backwards compatibility.
$this->assertEquals($expected, $result); return $this->getSectionStorage($section_data);
$this->assertSame(array_keys($expected), array_keys($result));
} }
} }
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* *
* @group layout_builder * @group layout_builder
*/ */
class SimpleConfigSectionStorageTest extends SectionStorageTestBase { class SimpleConfigSectionListTest extends SectionListTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
...@@ -27,7 +27,7 @@ class SimpleConfigSectionStorageTest extends SectionStorageTestBase { ...@@ -27,7 +27,7 @@ class SimpleConfigSectionStorageTest extends SectionStorageTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function getSectionStorage(array $section_data) { protected function getSectionList(array $section_data) {
$config = $this->container->get('config.factory')->getEditable('layout_builder_test.test_simple_config.foobar'); $config = $this->container->get('config.factory')->getEditable('layout_builder_test.test_simple_config.foobar');
$section_data = array_map(function (Section $section) { $section_data = array_map(function (Section $section) {
return $section->toArray(); return $section->toArray();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment