function LayoutBuilderTest::testPendingRevision

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php \Drupal\Tests\layout_builder\Functional\LayoutBuilderTest::testPendingRevision()
  2. 8.9.x core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php \Drupal\Tests\layout_builder\Functional\LayoutBuilderTest::testPendingRevision()
  3. 11.x 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 508

Class

LayoutBuilderTest
Tests the Layout Builder UI.

Namespace

Drupal\Tests\layout_builder\Functional

Code

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

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