You are here

public function LayoutBuilderTest::testNonDefaultViewMode in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php \Drupal\Tests\layout_builder\Functional\LayoutBuilderTest::testNonDefaultViewMode()

Tests that a non-default view mode works as expected.

File

core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php, line 508

Class

LayoutBuilderTest
Tests the Layout Builder UI.

Namespace

Drupal\Tests\layout_builder\Functional

Code

public function testNonDefaultViewMode() {
  $assert_session = $this
    ->assertSession();
  $page = $this
    ->getSession()
    ->getPage();
  $this
    ->drupalLogin($this
    ->drupalCreateUser([
    'configure any layout',
    'administer node display',
  ]));
  $field_ui_prefix = 'admin/structure/types/manage/bundle_with_section_field';

  // Allow overrides for the layout.
  $this
    ->drupalGet("{$field_ui_prefix}/display/default");
  $page
    ->checkField('layout[enabled]');
  $page
    ->pressButton('Save');
  $page
    ->checkField('layout[allow_custom]');
  $page
    ->pressButton('Save');
  $this
    ->clickLink('Manage layout');

  // Confirm the body field only is shown once.
  $assert_session
    ->elementsCount('css', '.field--name-body', 1);
  $page
    ->pressButton('Discard changes');
  $page
    ->pressButton('Confirm');
  $this
    ->clickLink('Teaser');

  // Enabling Layout Builder for the default mode does not affect the teaser.
  $assert_session
    ->addressEquals("{$field_ui_prefix}/display/teaser");
  $assert_session
    ->elementNotExists('css', '#layout-builder__layout');
  $assert_session
    ->checkboxNotChecked('layout[enabled]');
  $page
    ->checkField('layout[enabled]');
  $page
    ->pressButton('Save');
  $assert_session
    ->linkExists('Manage layout');
  $page
    ->clickLink('Manage layout');

  // Confirm the body field only is shown once.
  $assert_session
    ->elementsCount('css', '.field--name-body', 1);

  // Enable a disabled view mode.
  $page
    ->pressButton('Discard changes');
  $page
    ->pressButton('Confirm');
  $assert_session
    ->addressEquals("{$field_ui_prefix}/display/teaser");
  $page
    ->clickLink('Default');
  $assert_session
    ->addressEquals("{$field_ui_prefix}/display");
  $assert_session
    ->linkNotExists('Full content');
  $page
    ->checkField('display_modes_custom[full]');
  $page
    ->pressButton('Save');
  $assert_session
    ->linkExists('Full content');
  $page
    ->clickLink('Full content');
  $assert_session
    ->addressEquals("{$field_ui_prefix}/display/full");
  $page
    ->checkField('layout[enabled]');
  $page
    ->pressButton('Save');
  $assert_session
    ->linkExists('Manage layout');
  $page
    ->clickLink('Manage layout');

  // Confirm the body field only is shown once.
  $assert_session
    ->elementsCount('css', '.field--name-body', 1);
}