SectionStorageTestBase.php

Same filename and directory in other branches
  1. 9 core/modules/layout_builder/tests/src/Kernel/SectionStorageTestBase.php

Namespace

Drupal\Tests\layout_builder\Kernel

File

core/modules/layout_builder/tests/src/Kernel/SectionStorageTestBase.php

View source
<?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 section storage.
 */
abstract class SectionStorageTestBase extends EntityKernelTestBase {
    
    /**
     * {@inheritdoc}
     */
    public static $modules = [
        'layout_builder',
        'layout_discovery',
        'layout_test',
    ];
    
    /**
     * The section storage implementation.
     *
     * @var \Drupal\layout_builder\SectionStorageInterface
     */
    protected $sectionStorage;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() {
        parent::setUp();
        $this->installSchema('system', [
            'key_value_expire',
        ]);
        $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->sectionStorage = $this->getSectionStorage($section_data);
    }
    
    /**
     * Sets up the section storage entity.
     *
     * @param array $section_data
     *   An array of section data.
     *
     * @return \Drupal\Core\Entity\EntityInterface
     *   The entity.
     */
    protected abstract function getSectionStorage(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->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) {
        $result = $this->sectionStorage
            ->getSections();
        $this->assertEquals($expected, $result);
        $this->assertSame(array_keys($expected), array_keys($result));
    }

}

Classes

Title Deprecated Summary
SectionStorageTestBase Provides a base class for testing implementations of section storage.

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