class LayoutBuilderSectionStorageTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/layout_builder/tests/src/Functional/LayoutBuilderSectionStorageTest.php \Drupal\Tests\layout_builder\Functional\LayoutBuilderSectionStorageTest
- 9 core/modules/layout_builder/tests/src/Functional/LayoutBuilderSectionStorageTest.php \Drupal\Tests\layout_builder\Functional\LayoutBuilderSectionStorageTest
Tests the UI aspects of section storage.
@group layout_builder
Hierarchy
- class \Drupal\Tests\BrowserTestBase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, FunctionalTestSetupTrait, TestSetupTrait, BlockCreationTrait, ConfigTestTrait, ExtensionListTestTrait, ContentTypeCreationTrait, NodeCreationTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings, UiHelperTrait, UserCreationTrait, XdebugRequestTrait
- class \Drupal\Tests\layout_builder\Functional\LayoutBuilderSectionStorageTest
Expanded class hierarchy of LayoutBuilderSectionStorageTest
File
- core/
modules/ layout_builder/ tests/ src/ Functional/ LayoutBuilderSectionStorageTest.php, line 12
Namespace
Drupal\Tests\layout_builder\FunctionalView source
class LayoutBuilderSectionStorageTest extends BrowserTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'layout_builder',
'field_ui',
'node',
'layout_builder_test',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this
->createContentType([
'type' => 'bundle_with_section_field',
]);
$this
->createNode([
'type' => 'bundle_with_section_field',
'title' => 'The first node title',
'body' => [
[
'value' => 'The first node body',
],
],
]);
}
/**
* Tests that section loading is delegated to plugins during rendering.
*
* @see \Drupal\layout_builder_test\Plugin\SectionStorage\TestStateBasedSectionStorage
*/
public function testRenderByContextAwarePluginDelegate() {
$assert_session = $this
->assertSession();
$page = $this
->getSession()
->getPage();
$this
->drupalLogin($this
->drupalCreateUser([
'configure any layout',
'administer node display',
]));
// No blocks exist on the node by default.
$this
->drupalGet('node/1');
$assert_session
->pageTextNotContains('Defaults block title');
$assert_session
->pageTextNotContains('Test block title');
// Enable Layout Builder.
$this
->drupalGet('admin/structure/types/manage/bundle_with_section_field/display/default');
$this
->submitForm([
'layout[enabled]' => TRUE,
], 'Save');
// Add a block to the defaults.
$page
->clickLink('Manage layout');
$page
->clickLink('Add block');
$page
->clickLink('Powered by Drupal');
$page
->fillField('settings[label]', 'Defaults block title');
$page
->checkField('settings[label_display]');
$page
->pressButton('Add block');
$page
->pressButton('Save layout');
$this
->drupalGet('node/1');
$assert_session
->pageTextContains('Defaults block title');
$assert_session
->pageTextNotContains('Test block title');
// Enable the test section storage.
$this->container
->get('state')
->set('layout_builder_test_state', TRUE);
$this
->drupalGet('node/1');
$assert_session
->pageTextNotContains('Defaults block title');
$assert_session
->pageTextContains('Test block title');
// Disabling defaults does not prevent the section storage from running.
$this
->drupalGet('admin/structure/types/manage/bundle_with_section_field/display/default');
$this
->submitForm([
'layout[enabled]' => FALSE,
], 'Save');
$page
->pressButton('Confirm');
$assert_session
->pageTextContains('Layout Builder has been disabled');
$this
->drupalGet('node/1');
$assert_session
->pageTextNotContains('Defaults block title');
$assert_session
->pageTextContains('Test block title');
// Disabling the test storage restores the original output.
$this->container
->get('state')
->set('layout_builder_test_state', FALSE);
$this
->drupalGet('node/1');
$assert_session
->pageTextNotContains('Defaults block title');
$assert_session
->pageTextNotContains('Test block title');
}
}