book-2.0.x-dev/tests/src/Kernel/Block/BlockConfigSchemaTest.php
tests/src/Kernel/Block/BlockConfigSchemaTest.php
<?php
namespace Drupal\Tests\book\Kernel\Block;
use Drupal\Core\Config\TypedConfigManagerInterface;
use Drupal\KernelTests\KernelTestBase;
use Drupal\Tests\SchemaCheckTestTrait;
use Drupal\block\Entity\Block;
/**
* Tests the block config schema.
*
* @group book
*/
class BlockConfigSchemaTest extends KernelTestBase {
use SchemaCheckTestTrait;
/**
* {@inheritdoc}
*/
protected static $modules = [
'block',
'book',
'node',
'system',
'user',
];
/**
* The typed config manager.
*
* @var \Drupal\Core\Config\TypedConfigManagerInterface
*/
protected TypedConfigManagerInterface $typedConfig;
/**
* {@inheritdoc}
*
* @throws \Exception
*/
protected function setUp(): void {
parent::setUp();
$this->typedConfig = $this->container->get('config.typed');
$this->installEntitySchema('node');
$this->installSchema('book', ['book']);
$this->container->get('theme_installer')->install(['stark']);
}
/**
* Tests the block config schema for block plugins.
*
* @throws \Drupal\Core\Entity\EntityStorageException
*/
public function testBlockConfigSchema(): void {
$id = strtolower($this->randomMachineName());
$block = Block::create([
'id' => $id,
'theme' => 'stark',
'weight' => 00,
'status' => TRUE,
'region' => 'content',
'plugin' => 'book_navigation',
'settings' => [
'label' => $this->randomMachineName(),
'provider' => 'system',
'label_display' => FALSE,
],
'visibility' => [],
]);
$block->save();
$config = $this->config("block.block.$id");
$this->assertEquals($id, $config->get('id'));
$this->assertConfigSchema($this->typedConfig, $config->getName(), $config->get());
}
}
