You are here

public function LayoutBuilderContextMappingUpdatePathTest::testRunUpdates in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/tests/src/Functional/Update/LayoutBuilderContextMappingUpdatePathTest.php \Drupal\Tests\layout_builder\Functional\Update\LayoutBuilderContextMappingUpdatePathTest::testRunUpdates()

Tests the upgrade path for enabling Layout Builder.

File

core/modules/layout_builder/tests/src/Functional/Update/LayoutBuilderContextMappingUpdatePathTest.php, line 30

Class

LayoutBuilderContextMappingUpdatePathTest
Tests context-aware blocks after the context changes to section storage.

Namespace

Drupal\Tests\layout_builder\Functional\Update

Code

public function testRunUpdates() {
  $assert_session = $this
    ->assertSession();
  $this
    ->runUpdates();
  $this
    ->drupalLogin($this->rootUser);

  // Ensure that defaults and overrides display the body field within the
  // content region of the one column layout.
  $paths = [
    // Overrides.
    'node/1',
    // Defaults.
    'admin/structure/types/manage/article/display/default/layout',
  ];
  foreach ($paths as $path) {
    $this
      ->drupalGet($path);
    $assert_session
      ->statusCodeEquals(200);
    $assert_session
      ->elementExists('css', '.layout--onecol .layout__region--content .field--name-body');
  }
}