ConfigActionsTest.php

Same filename in this branch
  1. 11.x core/modules/media/tests/src/Kernel/ConfigActionsTest.php
  2. 11.x core/modules/language/tests/src/Kernel/ConfigActionsTest.php
  3. 11.x core/modules/field/tests/src/Kernel/ConfigActionsTest.php
  4. 11.x core/modules/contact/tests/src/Kernel/ConfigActionsTest.php
  5. 11.x core/modules/node/tests/src/Kernel/ConfigActionsTest.php
  6. 11.x core/modules/image/tests/src/Kernel/ConfigActionsTest.php
  7. 11.x core/modules/block/tests/src/Kernel/ConfigActionsTest.php

Namespace

Drupal\Tests\layout_builder\Kernel

File

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

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\layout_builder\Kernel;

use Drupal\Core\Entity\EntityDisplayRepositoryInterface;
use Drupal\entity_test\Entity\EntityTestBundle;
use Drupal\KernelTests\KernelTestBase;
use Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay;

/**
 * @group Recipe
 */
class ConfigActionsTest extends KernelTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'entity_test',
        'field',
        'layout_builder',
        'layout_discovery',
    ];
    
    /**
     * Tests config actions exposed by Layout Builder.
     */
    public function testLayoutBuilderActions() : void {
        
        /** @var \Drupal\Core\Config\Action\ConfigActionManager $manager */
        $manager = $this->container
            ->get('plugin.manager.config_action');
        EntityTestBundle::create([
            'id' => 'test',
        ])->save();
        
        /** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $display_repository */
        $display_repository = $this->container
            ->get(EntityDisplayRepositoryInterface::class);
        
        /** @var \Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay $display */
        $display = $display_repository->getViewDisplay('entity_test_with_bundle', 'test');
        $this->assertInstanceOf(LayoutBuilderEntityViewDisplay::class, $display);
        $display->save();
        $this->assertFalse($display->isLayoutBuilderEnabled());
        $manager->applyAction('enableLayoutBuilder', $display->getConfigDependencyName(), []);
        $this->assertTrue($display_repository->getViewDisplay('entity_test_with_bundle', 'test')
            ->isLayoutBuilderEnabled());
        $this->assertFalse($display->isOverridable());
        $manager->applyAction('allowLayoutOverrides', $display->getConfigDependencyName(), TRUE);
        $this->assertTrue($display_repository->getViewDisplay('entity_test_with_bundle', 'test')
            ->isOverridable());
        $manager->applyAction('allowLayoutOverrides', $display->getConfigDependencyName(), FALSE);
        $this->assertFalse($display_repository->getViewDisplay('entity_test_with_bundle', 'test')
            ->isOverridable());
        $manager->applyAction('disableLayoutBuilder', $display->getConfigDependencyName(), []);
        $this->assertFalse($display_repository->getViewDisplay('entity_test_with_bundle', 'test')
            ->isLayoutBuilderEnabled());
    }

}

Classes

Title Deprecated Summary
ConfigActionsTest @group Recipe

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