You are here

public function ViewsTest::testViewsIntegration in Entity Usage 8.4

Same name and namespace in other branches
  1. 8 tests/src/FunctionalJavascript/ViewsTest.php \Drupal\Tests\entity_usage\FunctionalJavascript\ViewsTest::testViewsIntegration()
  2. 8.2 tests/src/FunctionalJavascript/ViewsTest.php \Drupal\Tests\entity_usage\FunctionalJavascript\ViewsTest::testViewsIntegration()

Tests the views integration.

File

tests/src/FunctionalJavascript/ViewsTest.php, line 26

Class

ViewsTest
Basic tests for the views integration.

Namespace

Drupal\Tests\entity_usage\FunctionalJavascript

Code

public function testViewsIntegration() {
  $page = $this
    ->getSession()
    ->getPage();

  // Create node 1.
  $this
    ->drupalGet('/node/add/eu_test_ct');
  $page
    ->fillField('title[0][value]', 'Node 1');
  $page
    ->pressButton('Save');
  $this
    ->assertSession()
    ->pageTextContains('eu_test_ct Node 1 has been created.');
  $this
    ->saveHtmlOutput();

  // Create node 2 referencing node 1 using reference field.
  $this
    ->drupalGet('/node/add/eu_test_ct');
  $page
    ->fillField('title[0][value]', 'Node 2');
  $page
    ->fillField('field_eu_test_related_nodes[0][target_id]', 'Node 1 (1)');
  $page
    ->pressButton('Save');
  $this
    ->assertSession()
    ->pageTextContains('eu_test_ct Node 2 has been created.');
  $node2 = Node::load(2);
  $this
    ->saveHtmlOutput();

  // Create node 3 also referencing node 1 in a reference field.
  $this
    ->drupalGet('/node/add/eu_test_ct');
  $page
    ->fillField('title[0][value]', 'Node 3');
  $page
    ->fillField('field_eu_test_related_nodes[0][target_id]', 'Node 1 (1)');
  $page
    ->pressButton('Save');
  $this
    ->assertSession()
    ->pageTextContains('eu_test_ct Node 3 has been created.');
  $this
    ->saveHtmlOutput();

  // Visit the view and check that the usage is correctly tracked there.
  $this
    ->drupalGet('/eu-basic-test-view');
  $this
    ->assertSession()
    ->pageTextContains('Node 1');
  $this
    ->assertSession()
    ->responseContains('<td headers="view-count-table-column" class="views-field views-field-count">2          </td>');

  // Delete node 2 and verify that the view updates.
  $node2
    ->delete();
  $this
    ->drupalGet('/eu-basic-test-view');
  $this
    ->assertSession()
    ->pageTextContains('Node 1');
  $this
    ->assertSession()
    ->responseContains('<td headers="view-count-table-column" class="views-field views-field-count">1          </td>');
}