class SectionComponentTest

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/tests/src/Unit/SectionComponentTest.php \Drupal\Tests\layout_builder\Unit\SectionComponentTest
  2. 8.9.x core/modules/layout_builder/tests/src/Unit/SectionComponentTest.php \Drupal\Tests\layout_builder\Unit\SectionComponentTest
  3. 11.x core/modules/layout_builder/tests/src/Unit/SectionComponentTest.php \Drupal\Tests\layout_builder\Unit\SectionComponentTest

@coversDefaultClass \Drupal\layout_builder\SectionComponent
@group layout_builder

Hierarchy

Expanded class hierarchy of SectionComponentTest

File

core/modules/layout_builder/tests/src/Unit/SectionComponentTest.php, line 23

Namespace

Drupal\Tests\layout_builder\Unit
View source
class SectionComponentTest extends UnitTestCase {
  
  /**
   * @covers ::toRenderArray
   */
  public function testToRenderArray() : void {
    $existing_block = $this->prophesize(BlockPluginInterface::class);
    $existing_block->getPluginId()
      ->willReturn('block_plugin_id');
    $block_manager = $this->prophesize(BlockManagerInterface::class);
    $block_manager->createInstance('some_block_id', [
      'id' => 'some_block_id',
    ])
      ->willReturn($existing_block->reveal());
    // Imitate an event subscriber by setting a resulting build on the event.
    $event_dispatcher = $this->prophesize(EventDispatcherInterface::class);
    $event_dispatcher->dispatch(Argument::type(SectionComponentBuildRenderArrayEvent::class), LayoutBuilderEvents::SECTION_COMPONENT_BUILD_RENDER_ARRAY)
      ->shouldBeCalled()
      ->will(function ($args) {
      /** @var \Drupal\layout_builder\Event\SectionComponentBuildRenderArrayEvent $event */
      $event = $args[0];
      $event->setBuild([
        '#markup' => $event->getPlugin()
          ->getPluginId(),
      ]);
      return $event;
    });
    $layout_plugin = $this->prophesize(LayoutInterface::class);
    $layout_plugin->build(Argument::type('array'))
      ->willReturnArgument(0);
    $layout_manager = $this->prophesize(LayoutPluginManagerInterface::class);
    $layout_manager->createInstance('layout_onecol', [])
      ->willReturn($layout_plugin->reveal());
    $container = new ContainerBuilder();
    $container->set('plugin.manager.block', $block_manager->reveal());
    $container->set('event_dispatcher', $event_dispatcher->reveal());
    $container->set('plugin.manager.core.layout', $layout_manager->reveal());
    \Drupal::setContainer($container);
    $expected = [
      '#cache' => [
        'contexts' => [],
        'tags' => [],
        'max-age' => -1,
      ],
      '#markup' => 'block_plugin_id',
    ];
    $component = new SectionComponent('some-uuid', 'some-region', [
      'id' => 'some_block_id',
    ]);
    $result = $component->toRenderArray();
    $this->assertEquals($expected, $result);
  }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overrides
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers.
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomStringValidate Deprecated public function Callback for random string validation.
SectionComponentTest::testToRenderArray public function @covers ::toRenderArray[[api-linebreak]]
UnitTestCase::$root protected property The app root. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::setUp protected function 358
UnitTestCase::setUpBeforeClass public static function
UnitTestCase::__get public function

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