You are here

public function LayoutBuilderTest::testPendingRevision 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::testPendingRevision()
  2. 10 core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php \Drupal\Tests\layout_builder\Functional\LayoutBuilderTest::testPendingRevision()

Tests loading a pending revision in the Layout Builder UI.

File

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

Class

LayoutBuilderTest
Tests the Layout Builder UI.

Namespace

Drupal\Tests\layout_builder\Functional

Code

public function testPendingRevision() {
  $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';

  // Enable overrides.
  $this
    ->drupalGet("{$field_ui_prefix}/display/default");
  $this
    ->submitForm([
    'layout[enabled]' => TRUE,
  ], 'Save');
  $this
    ->drupalGet("{$field_ui_prefix}/display/default");
  $this
    ->submitForm([
    'layout[allow_custom]' => TRUE,
  ], 'Save');
  $storage = $this->container
    ->get('entity_type.manager')
    ->getStorage('node');
  $node = $storage
    ->load(1);

  // Create a pending revision.
  $pending_revision = $storage
    ->createRevision($node, FALSE);
  $pending_revision
    ->set('title', 'The pending title of the first node');
  $pending_revision
    ->save();

  // The original node title is available when viewing the node, but the
  // pending title is visible within the Layout Builder UI.
  $this
    ->drupalGet('node/1');
  $assert_session
    ->pageTextContains('The first node title');
  $page
    ->clickLink('Layout');
  $assert_session
    ->pageTextNotContains('The first node title');
  $assert_session
    ->pageTextContains('The pending title of the first node');
}