public function EntityViewBuilderTest::testEntityViewBuilderWeight in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/KernelTests/Core/Entity/EntityViewBuilderTest.php \Drupal\KernelTests\Core\Entity\EntityViewBuilderTest::testEntityViewBuilderWeight()
Tests weighting of display components.
File
- core/
tests/ Drupal/ KernelTests/ Core/ Entity/ EntityViewBuilderTest.php, line 186
Class
- EntityViewBuilderTest
- Tests the entity view builder.
Namespace
Drupal\KernelTests\Core\EntityCode
public function testEntityViewBuilderWeight() {
/** @var \Drupal\Core\Render\RendererInterface $renderer */
$renderer = $this->container
->get('renderer');
// Set a weight for the label component.
\Drupal::service('entity_display.repository')
->getViewDisplay('entity_test', 'entity_test', 'full')
->setComponent('label', [
'weight' => 20,
])
->save();
// Create and build a test entity.
$entity_test = $this
->createTestEntity('entity_test');
$view = $this->container
->get('entity_type.manager')
->getViewBuilder('entity_test')
->view($entity_test, 'full');
$renderer
->renderRoot($view);
// Check that the weight is respected.
$this
->assertEqual($view['label']['#weight'], 20, 'The weight of a display component is respected.');
}