public function RevisionRelationshipsTest::testNodeRevisionRelationship in Drupal 9
Same name and namespace in other branches
- 8 core/modules/node/tests/src/Kernel/Views/RevisionRelationshipsTest.php \Drupal\Tests\node\Kernel\Views\RevisionRelationshipsTest::testNodeRevisionRelationship()
- 10 core/modules/node/tests/src/Kernel/Views/RevisionRelationshipsTest.php \Drupal\Tests\node\Kernel\Views\RevisionRelationshipsTest::testNodeRevisionRelationship()
Create a node with revision and rest result count for both views.
File
- core/
modules/ node/ tests/ src/ Kernel/ Views/ RevisionRelationshipsTest.php, line 57
Class
- RevisionRelationshipsTest
- Tests the integration of node_revision table of node module.
Namespace
Drupal\Tests\node\Kernel\ViewsCode
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);
}