function RelationshipNodeTermDataTest::testViewsHandlerRelationshipNodeTermData in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/taxonomy/src/Tests/Views/RelationshipNodeTermDataTest.php \Drupal\taxonomy\Tests\Views\RelationshipNodeTermDataTest::testViewsHandlerRelationshipNodeTermData()
File
- core/
modules/ taxonomy/ src/ Tests/ Views/ RelationshipNodeTermDataTest.php, line 26 - Contains \Drupal\taxonomy\Tests\Views\RelationshipNodeTermDataTest.
Class
- RelationshipNodeTermDataTest
- Tests the taxonomy term on node relationship handler.
Namespace
Drupal\taxonomy\Tests\ViewsCode
function testViewsHandlerRelationshipNodeTermData() {
$view = Views::getView('test_taxonomy_node_term_data');
// Tests \Drupal\taxonomy\Plugin\views\relationship\NodeTermData::calculateDependencies().
$expected = [
'config' => [
'core.entity_view_mode.node.teaser',
],
'module' => [
'node',
'taxonomy',
'user',
],
];
$this
->assertIdentical($expected, $view
->getDependencies());
$this
->executeView($view, array(
$this->term1
->id(),
$this->term2
->id(),
));
$expected_result = array(
array(
'nid' => $this->nodes[1]
->id(),
),
array(
'nid' => $this->nodes[0]
->id(),
),
);
$column_map = array(
'nid' => 'nid',
);
$this
->assertIdenticalResultset($view, $expected_result, $column_map);
// Change the view to test relation limited by vocabulary.
$this
->config('views.view.test_taxonomy_node_term_data')
->set('display.default.display_options.relationships.term_node_tid.vids', [
'views_testing_tags',
])
->save();
$view = Views::getView('test_taxonomy_node_term_data');
// Tests \Drupal\taxonomy\Plugin\views\relationship\NodeTermData::calculateDependencies().
$expected['config'][] = 'taxonomy.vocabulary.views_testing_tags';
$this
->assertIdentical($expected, $view
->getDependencies());
$this
->executeView($view, array(
$this->term1
->id(),
$this->term2
->id(),
));
$this
->assertIdenticalResultset($view, $expected_result, $column_map);
}