function BlockComponentRenderArrayTest::testOnBuildRenderWithoutPreviewFallbackString

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/tests/src/Unit/BlockComponentRenderArrayTest.php \Drupal\Tests\layout_builder\Unit\BlockComponentRenderArrayTest::testOnBuildRenderWithoutPreviewFallbackString()
  2. 8.9.x core/modules/layout_builder/tests/src/Unit/BlockComponentRenderArrayTest.php \Drupal\Tests\layout_builder\Unit\BlockComponentRenderArrayTest::testOnBuildRenderWithoutPreviewFallbackString()
  3. 10 core/modules/layout_builder/tests/src/Unit/BlockComponentRenderArrayTest.php \Drupal\Tests\layout_builder\Unit\BlockComponentRenderArrayTest::testOnBuildRenderWithoutPreviewFallbackString()

@covers ::onBuildRender

@dataProvider providerBlockTypes

File

core/modules/layout_builder/tests/src/Unit/BlockComponentRenderArrayTest.php, line 151

Class

BlockComponentRenderArrayTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21layout_builder%21src%21EventSubscriber%21BlockComponentRenderArray.php/class/BlockComponentRenderArray/11.x" title="Builds render arrays and handles access for all block components." class="local">\Drupal\layout_builder\EventSubscriber\BlockComponentRenderArray</a> @group layout_builder

Namespace

Drupal\Tests\layout_builder\Unit

Code

public function testOnBuildRenderWithoutPreviewFallbackString($refinable_dependent_access) : void {
    $contexts = [];
    if ($refinable_dependent_access) {
        $block = $this->prophesize(TestBlockPluginWithRefinableDependentAccessInterface::class);
        $layout_entity = $this->prophesize(EntityInterface::class);
        $layout_entity = $layout_entity->reveal();
        $context = $this->prophesize(ContextInterface::class);
        $context->getContextValue()
            ->willReturn($layout_entity);
        $contexts['layout_builder.entity'] = $context->reveal();
        $block->setAccessDependency($layout_entity)
            ->shouldBeCalled();
    }
    else {
        $block = $this->prophesize(BlockPluginInterface::class);
    }
    $access_result = AccessResult::allowed();
    $block->access($this->account
        ->reveal(), TRUE)
        ->willReturn($access_result)
        ->shouldBeCalled();
    $block->getCacheContexts()
        ->willReturn([]);
    $block->getCacheTags()
        ->willReturn([
        'test',
    ]);
    $block->getCacheMaxAge()
        ->willReturn(Cache::PERMANENT);
    $block->getConfiguration()
        ->willReturn([]);
    $block->getPluginId()
        ->willReturn('block_plugin_id');
    $block->getBaseId()
        ->willReturn('block_plugin_id');
    $block->getDerivativeId()
        ->willReturn(NULL);
    $placeholder_label = 'Placeholder Label';
    $block->label()
        ->willReturn($placeholder_label);
    $block_content = [
        '#markup' => 'The block content.',
    ];
    $block->build()
        ->willReturn($block_content);
    $this->blockManager
        ->createInstance('some_block_id', [
        'id' => 'some_block_id',
    ])
        ->willReturn($block->reveal());
    $component = new SectionComponent('some-uuid', 'some-region', [
        'id' => 'some_block_id',
    ]);
    $in_preview = FALSE;
    $event = new SectionComponentBuildRenderArrayEvent($component, $contexts, $in_preview);
    $subscriber = new BlockComponentRenderArray($this->account
        ->reveal());
    $translation = $this->prophesize(TranslationInterface::class);
    $translation->translateString(Argument::type(TranslatableMarkup::class))
        ->willReturn($placeholder_label);
    $subscriber->setStringTranslation($translation->reveal());
    $expected_build = [
        '#theme' => 'block',
        '#weight' => 0,
        '#configuration' => [],
        '#plugin_id' => 'block_plugin_id',
        '#base_plugin_id' => 'block_plugin_id',
        '#derivative_plugin_id' => NULL,
        'content' => $block_content,
        '#in_preview' => FALSE,
    ];
    $expected_cache = $expected_build + [
        '#cache' => [
            'contexts' => [],
            'tags' => [
                'test',
            ],
            'max-age' => -1,
        ],
    ];
    $subscriber->onBuildRender($event);
    $result = $event->getBuild();
    $this->assertEquals($expected_build, $result);
    $event->getCacheableMetadata()
        ->applyTo($result);
    $this->assertEquals($expected_cache, $result);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.