You are here

public function EntityTest::testRenderWithUuid in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/tests/src/Unit/Plugin/area/EntityTest.php \Drupal\Tests\views\Unit\Plugin\area\EntityTest::testRenderWithUuid()
  2. 9 core/modules/views/tests/src/Unit/Plugin/area/EntityTest.php \Drupal\Tests\views\Unit\Plugin\area\EntityTest::testRenderWithUuid()

@covers ::render @covers ::defineOptions @covers ::init

File

core/modules/views/tests/src/Unit/Plugin/area/EntityTest.php, line 233

Class

EntityTest
@coversDefaultClass \Drupal\views\Plugin\views\area\Entity @group Entity

Namespace

Drupal\Tests\views\Unit\Plugin\area

Code

public function testRenderWithUuid() {
  $this
    ->setupEntityTypeManager();
  $uuid = '1d52762e-b9d8-4177-908f-572d1a5845a4';
  $options = [
    'target' => $uuid,
    'tokenize' => FALSE,
  ];
  $entity = $this
    ->createMock('Drupal\\Core\\Entity\\EntityInterface');
  $entity
    ->expects($this
    ->once())
    ->method('access')
    ->willReturn(TRUE);
  $this->entityStorage
    ->expects($this
    ->never())
    ->method('load');
  $this->entityRepository
    ->expects($this
    ->once())
    ->method('loadEntityByConfigTarget')
    ->willReturn($entity);
  $this->entityViewBuilder
    ->expects($this
    ->once())
    ->method('view')
    ->with($entity, 'default')
    ->willReturn([
    '#markup' => 'hallo',
  ]);
  $this->entityHandler
    ->init($this->executable, $this->display, $options);
  $result = $this->entityHandler
    ->render();
  $this
    ->assertEquals([
    '#markup' => 'hallo',
  ], $result);
}