function InlineBlockEntityOperationsTest::testPreSaveWithSyncingEntity

Same name and namespace in other branches
  1. 10 core/modules/layout_builder/tests/src/Unit/InlineBlockEntityOperationsTest.php \Drupal\Tests\layout_builder\Unit\InlineBlockEntityOperationsTest::testPreSaveWithSyncingEntity()

Tests calling handlePreSave() with an entity that is syncing.

@covers ::handlePreSave

File

core/modules/layout_builder/tests/src/Unit/InlineBlockEntityOperationsTest.php, line 26

Class

InlineBlockEntityOperationsTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21layout_builder%21src%21InlineBlockEntityOperations.php/class/InlineBlockEntityOperations/11.x" title="Defines a class for reacting to entity events related to Inline Blocks." class="local">\Drupal\layout_builder\InlineBlockEntityOperations</a>

Namespace

Drupal\Tests\layout_builder\Unit

Code

public function testPreSaveWithSyncingEntity() : void {
    $entity = $this->prophesize(SynchronizableInterface::class);
    $entity->isSyncing()
        ->willReturn(TRUE);
    $entity_type_manager = $this->prophesize(EntityTypeManagerInterface::class);
    $inline_block_usage = $this->prophesize(InlineBlockUsageInterface::class);
    $section_storage_manager = $this->prophesize(SectionStorageManagerInterface::class);
    $section_storage_manager->findByContext()
        ->shouldNotBeCalled();
    $inline_block_entity_operations = new InlineBlockEntityOperations($entity_type_manager->reveal(), $inline_block_usage->reveal(), $section_storage_manager->reveal());
    $inline_block_entity_operations->handlePreSave($entity->reveal());
}

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