You are here

public function NodeViewsAnalyzeTest::testNodeViewsAnalyze in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/node/tests/src/Functional/Views/NodeViewsAnalyzeTest.php \Drupal\Tests\node\Functional\Views\NodeViewsAnalyzeTest::testNodeViewsAnalyze()

Tests the implementation of node_views_analyze().

File

core/modules/node/tests/src/Functional/Views/NodeViewsAnalyzeTest.php, line 32

Class

NodeViewsAnalyzeTest
Tests node_views_analyze().

Namespace

Drupal\Tests\node\Functional\Views

Code

public function testNodeViewsAnalyze() {

  // Create user with permission to view analyze message on views_ui.
  $admin_user = $this
    ->createUser([
    'administer views',
  ]);
  $this
    ->drupalLogin($admin_user);

  // Access to views analyze page.
  $this
    ->drupalGet('admin/structure/views/nojs/analyze/test_node_views_analyze/page_1');

  // Should return 200 with correct permission.
  $this
    ->assertSession()
    ->statusCodeEquals(200);
  $this
    ->assertSession()
    ->responseContains('has set node/% as path. This will not produce what you want. If you want to have multiple versions of the node view, use Layout Builder.');
}