class BlockManagerTest
Tests Drupal\Core\Block\BlockManager.
Attributes
#[CoversClass(BlockManager::class)]
#[Group('block')]
Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Prophecy\PhpUnit\ProphecyTrait, \Drupal\TestTools\Extension\DeprecationBridge\ExpectDeprecationTrait, \Drupal\Tests\RandomGeneratorTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\Core\Block\BlockManagerTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of BlockManagerTest
File
-
core/
tests/ Drupal/ Tests/ Core/ Block/ BlockManagerTest.php, line 22
Namespace
Drupal\Tests\Core\BlockView source
class BlockManagerTest extends UnitTestCase {
/**
* The block manager under test.
*
* @var \Drupal\Core\Block\BlockManager
*/
protected $blockManager;
/**
* The logger.
*
* @var \Psr\Log\LoggerInterface
*/
protected $logger;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$container = new ContainerBuilder();
$current_user = $this->prophesize(AccountInterface::class);
$container->set('current_user', $current_user->reveal());
$container->set('string_translation', $this->getStringTranslationStub());
\Drupal::setContainer($container);
$cache_backend = $this->prophesize(CacheBackendInterface::class);
$module_handler = $this->prophesize(ModuleHandlerInterface::class);
$this->logger = $this->prophesize(LoggerInterface::class);
$this->blockManager = new BlockManager(new \ArrayObject(), $cache_backend->reveal(), $module_handler->reveal(), $this->logger
->reveal());
$this->blockManager
->setStringTranslation($this->getStringTranslationStub());
$discovery = $this->prophesize(DiscoveryInterface::class);
// Specify the 'broken' block, as well as 3 other blocks with admin labels
// that are purposefully not in alphabetical order.
$discovery->getDefinitions()
->willReturn([
'broken' => [
'admin_label' => 'Broken/Missing',
'category' => 'Block',
'class' => Broken::class,
'provider' => 'core',
],
'block1' => [
'admin_label' => 'Coconut',
'category' => 'Group 2',
],
'block2' => [
'admin_label' => 'Apple',
'category' => 'Group 1',
],
'block3' => [
'admin_label' => 'Banana',
'category' => 'Group 2',
],
]);
// Force the discovery object onto the block manager.
$property = new \ReflectionProperty(BlockManager::class, 'discovery');
$property->setValue($this->blockManager, $discovery->reveal());
}
/**
* Tests definitions.
*
* @legacy-covers ::getDefinitions
*/
public function testDefinitions() : void {
$definitions = $this->blockManager
->getDefinitions();
$this->assertSame([
'broken',
'block1',
'block2',
'block3',
], array_keys($definitions));
}
/**
* Tests sorted definitions.
*
* @legacy-covers ::getSortedDefinitions
*/
public function testSortedDefinitions() : void {
$definitions = $this->blockManager
->getSortedDefinitions();
$this->assertSame([
'block2',
'block3',
'block1',
], array_keys($definitions));
}
/**
* Tests grouped definitions.
*
* @legacy-covers ::getGroupedDefinitions
*/
public function testGroupedDefinitions() : void {
$definitions = $this->blockManager
->getGroupedDefinitions();
$this->assertSame([
'Group 1',
'Group 2',
], array_keys($definitions));
$this->assertSame([
'block2',
], array_keys($definitions['Group 1']));
$this->assertSame([
'block3',
'block1',
], array_keys($definitions['Group 2']));
}
/**
* Tests handle plugin not found.
*
* @legacy-covers ::handlePluginNotFound
*/
public function testHandlePluginNotFound() : void {
$this->logger
->warning('The "%plugin_id" block plugin was not found', [
'%plugin_id' => 'invalid',
])
->shouldBeCalled();
$plugin = $this->blockManager
->createInstance('invalid');
$this->assertSame('broken', $plugin->getPluginId());
}
}
Members
| Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
|---|---|---|---|---|
| BlockManagerTest::$blockManager | protected | property | The block manager under test. | |
| BlockManagerTest::$logger | protected | property | The logger. | |
| BlockManagerTest::setUp | protected | function | Overrides UnitTestCase::setUp | |
| BlockManagerTest::testDefinitions | public | function | Tests definitions. | |
| BlockManagerTest::testGroupedDefinitions | public | function | Tests grouped definitions. | |
| BlockManagerTest::testHandlePluginNotFound | public | function | Tests handle plugin not found. | |
| BlockManagerTest::testSortedDefinitions | public | function | Tests sorted definitions. | |
| ExpectDeprecationTrait::expectDeprecation | public | function | Adds an expected deprecation. | |
| ExpectDeprecationTrait::setUpErrorHandler | public | function | Sets up the test error handler. | |
| ExpectDeprecationTrait::tearDownErrorHandler | public | function | Tears down the test error handler. | |
| 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. | |
| UnitTestCase::$root | protected | property | The app root. | |
| 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::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::setDebugDumpHandler | public static | function | Registers the dumper CLI handler when the DebugDump extension is enabled. | |
| UnitTestCase::setupMockIterator | protected | function | Set up a traversable class mock to return specific items when iterated. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.