class RevisionRelationshipsTest

Same name in this branch
  1. 9 core/modules/block_content/tests/src/Kernel/Views/RevisionRelationshipsTest.php \Drupal\Tests\block_content\Kernel\Views\RevisionRelationshipsTest
Same name and namespace in other branches
  1. 11.x core/modules/node/tests/src/Kernel/Views/RevisionRelationshipsTest.php \Drupal\Tests\node\Kernel\Views\RevisionRelationshipsTest
  2. 11.x core/modules/block_content/tests/src/Kernel/Views/RevisionRelationshipsTest.php \Drupal\Tests\block_content\Kernel\Views\RevisionRelationshipsTest

Tests the integration of node_revision table of node module.

@group node

Hierarchy

Expanded class hierarchy of RevisionRelationshipsTest

File

core/modules/node/tests/src/Kernel/Views/RevisionRelationshipsTest.php, line 17

Namespace

Drupal\Tests\node\Kernel\Views
View source
class RevisionRelationshipsTest extends ViewsKernelTestBase {
  
  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'node',
    'node_test_views',
    'language',
    'content_translation',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp($import_test_views = TRUE) : void {
    parent::setUp($import_test_views);
    $this->installSchema('node', 'node_access');
    $this->installEntitySchema('user');
    $this->installEntitySchema('node');
    ConfigurableLanguage::createFromLangcode('fr')->save();
    ViewTestData::createTestViews(static::class, [
      'node_test_views',
    ]);
  }
  
  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = [
    'test_node_revision_nid',
    'test_node_revision_vid',
  ];
  
  /**
   * Create a node with revision and rest result count for both views.
   */
  public function testNodeRevisionRelationship() {
    $type = NodeType::create([
      'type' => 'page',
      'name' => 'page',
    ]);
    $type->save();
    $node = Node::create([
      'type' => 'page',
      'title' => 'test',
      'uid' => 1,
    ]);
    $node->save();
    // Add a translation.
    $translation = $node->addTranslation('fr', $node->toArray());
    $translation->save();
    // Create revision of the node.
    $node->setNewRevision(TRUE);
    $node->save();
    $column_map = [
      'vid' => 'vid',
      'node_field_data_node_field_revision_nid' => 'node_node_revision_nid',
      'nid_1' => 'nid_1',
      'node_field_revision_langcode' => 'node_field_revision_langcode',
    ];
    // Here should be two rows for each translation.
    $view_nid = Views::getView('test_node_revision_nid');
    $this->executeView($view_nid, [
      $node->id(),
    ]);
    $resultset_nid = [
      [
        'vid' => '1',
        'node_node_revision_nid' => '1',
        'nid_1' => '1',
        'node_field_revision_langcode' => 'fr',
      ],
      [
        'vid' => '1',
        'node_node_revision_nid' => '1',
        'nid_1' => '1',
        'node_field_revision_langcode' => 'en',
      ],
      [
        'vid' => '2',
        'node_revision_nid' => '1',
        'node_node_revision_nid' => '1',
        'nid_1' => '1',
        'node_field_revision_langcode' => 'fr',
      ],
      [
        'vid' => '2',
        'node_revision_nid' => '1',
        'node_node_revision_nid' => '1',
        'nid_1' => '1',
        'node_field_revision_langcode' => 'en',
      ],
    ];
    $this->assertIdenticalResultset($view_nid, $resultset_nid, $column_map);
    // There should be one row with active revision 2 for each translation.
    $view_vid = Views::getView('test_node_revision_vid');
    $this->executeView($view_vid, [
      $node->id(),
    ]);
    $resultset_vid = [
      [
        'vid' => '2',
        'node_node_revision_nid' => '1',
        'nid_1' => '1',
        'node_field_revision_langcode' => 'en',
      ],
      [
        'vid' => '2',
        'node_node_revision_nid' => '1',
        'nid_1' => '1',
        'node_field_revision_langcode' => 'fr',
      ],
    ];
    $this->assertIdenticalResultset($view_vid, $resultset_vid, $column_map);
  }

}

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