class SectionComponentTest in Drupal 8
Same name and namespace in other branches
- 9 core/modules/layout_builder/tests/src/Unit/SectionComponentTest.php \Drupal\Tests\layout_builder\Unit\SectionComponentTest
- 10 core/modules/layout_builder/tests/src/Unit/SectionComponentTest.php \Drupal\Tests\layout_builder\Unit\SectionComponentTest
@coversDefaultClass \Drupal\layout_builder\SectionComponent @group layout_builder
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\layout_builder\Unit\SectionComponentTest
Expanded class hierarchy of SectionComponentTest
File
- core/
modules/ layout_builder/ tests/ src/ Unit/ SectionComponentTest.php, line 21
Namespace
Drupal\Tests\layout_builder\UnitView source
class SectionComponentTest extends UnitTestCase {
/**
* @covers ::toRenderArray
*/
public function testToRenderArray() {
$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(LayoutBuilderEvents::SECTION_COMPONENT_BUILD_RENDER_ARRAY, Argument::type(SectionComponentBuildRenderArrayEvent::class))
->shouldBeCalled()
->will(function ($args) {
/** @var \Drupal\layout_builder\Event\SectionComponentBuildRenderArrayEvent $event */
$event = $args[1];
$event
->setBuild([
'#markup' => $event
->getPlugin()
->getPluginId(),
]);
return;
});
$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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
SectionComponentTest:: |
public | function | @covers ::toRenderArray | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 340 |