BlockConfigSchemaTest.php

Same filename in this branch
  1. 11.x core/modules/block/tests/src/Kernel/BlockConfigSchemaTest.php
Same filename and directory in other branches
  1. 9 core/modules/block/tests/src/Kernel/BlockConfigSchemaTest.php
  2. 8.9.x core/modules/block/tests/src/Kernel/BlockConfigSchemaTest.php
  3. 10 core/modules/block/tests/src/Kernel/BlockConfigSchemaTest.php
  4. 10 core/modules/book/tests/src/Kernel/Block/BlockConfigSchemaTest.php

Namespace

Drupal\Tests\book\Kernel\Block

File

core/modules/book/tests/src/Kernel/Block/BlockConfigSchemaTest.php

View source
<?php

namespace Drupal\Tests\book\Kernel\Block;

use Drupal\block\Entity\Block;
use Drupal\Tests\SchemaCheckTestTrait;
use Drupal\KernelTests\KernelTestBase;

/**
 * Tests the block config schema.
 *
 * @group book
 */
class BlockConfigSchemaTest extends KernelTestBase {
    use SchemaCheckTestTrait;
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'block',
        'book',
        'node',
        // \Drupal\block\Entity\Block->preSave() calls system_region_list().
'system',
        'user',
    ];
    
    /**
     * The typed config manager.
     *
     * @var \Drupal\Core\Config\TypedConfigManagerInterface
     */
    protected $typedConfig;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->typedConfig = \Drupal::service('config.typed');
        $this->installEntitySchema('node');
        $this->installSchema('book', [
            'book',
        ]);
        $this->container
            ->get('theme_installer')
            ->install([
            'stark',
        ]);
    }
    
    /**
     * Tests the block config schema for block plugins.
     */
    public function testBlockConfigSchema() {
        $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());
    }

}

Classes

Title Deprecated Summary
BlockConfigSchemaTest Tests the block config schema.

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