function FieldTest::testQueryWithGroupByForConfigField
Same name in other branches
- 9 core/modules/views/tests/src/Unit/Plugin/field/FieldTest.php \Drupal\Tests\views\Unit\Plugin\field\FieldTest::testQueryWithGroupByForConfigField()
- 8.9.x core/modules/views/tests/src/Unit/Plugin/field/FieldTest.php \Drupal\Tests\views\Unit\Plugin\field\FieldTest::testQueryWithGroupByForConfigField()
- 10 core/modules/views/tests/src/Unit/Plugin/field/FieldTest.php \Drupal\Tests\views\Unit\Plugin\field\FieldTest::testQueryWithGroupByForConfigField()
@covers ::query
File
-
core/
modules/ views/ tests/ src/ Unit/ Plugin/ field/ FieldTest.php, line 523
Class
- FieldTest
- @coversDefaultClass \Drupal\views\Plugin\views\field\EntityField @group views
Namespace
Drupal\Tests\views\Unit\Plugin\fieldCode
public function testQueryWithGroupByForConfigField() : void {
$definition = [
'entity_type' => 'test_entity',
'field_name' => 'body',
];
$handler = new EntityField([], 'field', $definition, $this->entityTypeManager, $this->formatterPluginManager, $this->fieldTypePluginManager, $this->languageManager, $this->renderer, $this->entityRepository, $this->entityFieldManager, $this->entityTypeBundleInfo);
$handler->view = $this->executable;
$handler->view->field = [
$handler,
];
$this->setupLanguageRenderer($handler, $definition);
$field_storage = $this->getConfigFieldStorage();
$this->entityFieldManager
->expects($this->any())
->method('getFieldStorageDefinitions')
->with('test_entity')
->willReturn([
'body' => $field_storage,
]);
$table_mapping = $this->createMock('Drupal\\Core\\Entity\\Sql\\TableMappingInterface');
$table_mapping->expects($this->any())
->method('getFieldColumnName')
->with($field_storage, 'value')
->willReturn('body_value');
$entity_storage = $this->createMock('Drupal\\Core\\Entity\\Sql\\SqlEntityStorageInterface');
$entity_storage->expects($this->any())
->method('getTableMapping')
->willReturn($table_mapping);
$this->entityTypeManager
->expects($this->any())
->method('getStorage')
->with('test_entity')
->willReturn($entity_storage);
$options = [
'group_column' => 'value',
'group_columns' => [],
'table' => 'test_entity__body',
];
$handler->init($this->executable, $this->display, $options);
$query = $this->getMockBuilder('Drupal\\views\\Plugin\\views\\query\\Sql')
->disableOriginalConstructor()
->getMock();
$query->expects($this->once())
->method('ensureTable')
->with('test_entity__body', NULL)
->willReturn('test_entity__body');
// Ensure that we add the title field to the query, if we group by some
// other field in the view.
$query->expects($this->once())
->method('addField')
->with('test_entity__body', 'body_value');
$this->executable->query = $query;
$handler->query(TRUE);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.