FieldStorageCreateCheckTest.php

Namespace

Drupal\KernelTests\Core\Field

File

core/tests/Drupal/KernelTests/Core/Field/FieldStorageCreateCheckTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\KernelTests\Core\Field;

use Drupal\field\Entity\FieldStorageConfig;
use Drupal\KernelTests\KernelTestBase;

/**
 * Tests the field storage create check subscriber.
 *
 * @group Field
 */
class FieldStorageCreateCheckTest extends KernelTestBase {
    
    /**
     * Modules to load.
     *
     * @var array
     */
    protected static $modules = [
        'entity_test',
        'field',
    ];
    
    /**
     * Tests the field storage create check subscriber.
     */
    public function testFieldStorageCreateCheck() : void {
        $this->expectException(\LogicException::class);
        $this->expectExceptionMessage('Creating the "entity_test.field_test" field storage definition without the entity schema "entity_test" being installed is not allowed.');
        FieldStorageConfig::create([
            'field_name' => 'field_test',
            'entity_type' => 'entity_test',
            'type' => 'integer',
        ])->save();
    }

}

Classes

Title Deprecated Summary
FieldStorageCreateCheckTest Tests the field storage create check subscriber.

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