You are here

RevisionRelationshipsTest.php in Zircon Profile 8.0

File

core/modules/node/src/Tests/Views/RevisionRelationshipsTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\node\Tests\Views\RevisionRelationshipsTest.
 */
namespace Drupal\node\Tests\Views;

use Drupal\views\Views;
use Drupal\views\Tests\ViewTestBase;
use Drupal\views\Tests\ViewTestData;

/**
 * Tests the integration of node_revision table of node module.
 *
 * @group node
 */
class RevisionRelationshipsTest extends ViewTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'node',
    'node_test_views',
  );
  protected function setUp() {
    parent::setUp();
    ViewTestData::createTestViews(get_class($this), array(
      'node_test_views',
    ));
  }

  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = array(
    'test_node_revision_nid',
    'test_node_revision_vid',
  );

  /**
   * Create a node with revision and rest result count for both views.
   */
  public function testNodeRevisionRelationship() {
    $node = $this
      ->drupalCreateNode();

    // Create revision of the node.
    $node_revision = clone $node;
    $node_revision
      ->setNewRevision();
    $node_revision
      ->save();
    $column_map = array(
      'vid' => 'vid',
      'node_field_data_node_field_revision_nid' => 'node_node_revision_nid',
      'nid_1' => 'nid_1',
    );

    // Here should be two rows.
    $view_nid = Views::getView('test_node_revision_nid');
    $this
      ->executeView($view_nid, array(
      $node
        ->id(),
    ));
    $resultset_nid = array(
      array(
        'vid' => '1',
        'node_node_revision_nid' => '1',
        'nid_1' => '1',
      ),
      array(
        'vid' => '2',
        'node_revision_nid' => '1',
        'node_node_revision_nid' => '1',
        'nid_1' => '1',
      ),
    );
    $this
      ->assertIdenticalResultset($view_nid, $resultset_nid, $column_map);

    // There should be only one row with active revision 2.
    $view_vid = Views::getView('test_node_revision_vid');
    $this
      ->executeView($view_vid, array(
      $node
        ->id(),
    ));
    $resultset_vid = array(
      array(
        'vid' => '2',
        'node_node_revision_nid' => '1',
        'nid_1' => '1',
      ),
    );
    $this
      ->assertIdenticalResultset($view_vid, $resultset_vid, $column_map);
  }

}

Classes

Namesort descending Description
RevisionRelationshipsTest Tests the integration of node_revision table of node module.